code for checking pipeline outputs added

This commit is contained in:
2025-08-18 09:38:33 +02:00
parent 334f16fe01
commit 531d178f66
3 changed files with 113 additions and 0 deletions

View 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()