Search⌘ K
AI Features

Exercise: Concept of Information

Explore how to convert raw questionnaire data into meaningful information using Altair visualizations. Understand techniques for simplifying data, highlighting key insights, and enhancing chart readability to focus on product improvement areas with low to medium positive response rates.

We'll cover the following...

Exercise

Imagine that you have the output of a questionnaire on a specific product, as shown in the following dataset.

Python 3.10.4
import pandas as pd
df = pd.read_csv('data/questions.csv')
print(df)

Draw a chart in Altair that analyzes the aspects of the product that are most appreciated and those that are least appreciated.

Use the following coding playground for ...