code for checking pipeline outputs added
This commit is contained in:
31
notebooks/data_inspector.py
Normal file
31
notebooks/data_inspector.py
Normal file
@@ -0,0 +1,31 @@
|
||||
import marimo
|
||||
|
||||
__generated_with = "0.14.16"
|
||||
app = marimo.App(width="medium")
|
||||
|
||||
|
||||
@app.cell
|
||||
def _():
|
||||
import os
|
||||
import marimo as mo
|
||||
import pandas as pd
|
||||
return (mo,)
|
||||
|
||||
|
||||
@app.cell(hide_code=True)
|
||||
def _(mo):
|
||||
mo.md(
|
||||
r"""
|
||||
# Analyse the Mismatch data
|
||||
|
||||
Data structure
|
||||
```
|
||||
|
||||
```
|
||||
"""
|
||||
)
|
||||
return
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run()
|
||||
Reference in New Issue
Block a user