added quant data plan
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user