Files
JPMC-quant/00_qualtrics_validation.py
2026-01-16 10:22:05 +01:00

38 lines
549 B
Python

import marimo
__generated_with = "0.19.2"
app = marimo.App(width="medium")
@app.cell
def _():
import marimo as mo
import polars as pl
import pandas as pd
import plotly as plt
from pathlib import Path
return Path, pl
@app.cell
def _(Path):
results_file = Path('./data/VB_Qualtrics_labels.csv')
return (results_file,)
@app.cell
def _(pl, results_file):
df = pl.read_csv(results_file, has_header=True, skip_rows=1)
df
return
@app.cell
def _():
return
if __name__ == "__main__":
app.run()