added quant data plan

This commit is contained in:
2026-01-16 10:22:05 +01:00
parent 311dedd02c
commit 62b57ae862
6 changed files with 91 additions and 0 deletions

View File

@@ -10,6 +10,21 @@ def _():
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