...

/

Exercise: The DIKW Pyramid

Exercise: The DIKW Pyramid

We'll cover the following...

The following code contains the dataset describing the awareness of Tool Z (a dummy tool) among the population of different countries from 1960 to 2015. Click the “Run” button to see what the dataset looks like:

Press + to interact
import pandas as pd
df = pd.read_csv('data/tool_z_familiarity.csv', na_values='')
df.dropna(inplace=True)
print(df)

Note: The dataset used above is the dummy dataset about a dummy tool (Tool Z).

We can use the DIKW pyramid method to transform the raw data into wisdom and improve the following chart in the code terminal ...