Exercise: Concept of Information
Use the concepts you’ve learned so far to solve this exercise.
Exercise
Imagine that you have the output of a questionnaire on a specific product, as shown in the following dataset.
Press + to interact
import pandas as pddf = 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 ... ...