design-study-sample

An interactive analysis app — published with MakeMode Notebook. Code is hidden by default (see “Show code” under any question); nothing here is a black box.

Data: design-study-sample.csv · 120 rows — embedded in this page.

Starting…
2157
15
821
Load your own CSV with the same columns to see this analysis run on your data instead — it never leaves your browser.

What is the average satisfaction by device?

Show code
print(df.groupby('device')['satisfaction'].mean())

Plot task time by age group

Show code
import matplotlib.pyplot as plt
df.groupby('age_group')['task_minutes'].mean().plot(kind='bar')
plt.show()