Note: The data used in this example is available here. You can read more about the available types of data in the Adding data chapter.
import pandas as pd
from ipyvizzu import Chart, Data, Config, Style
data_frame = pd.read_csv(
"../../data/chart_types_eu.csv", dtype={"Year": str, "Timeseries": str}
)
data = Data()
data.add_data_frame(data_frame)
chart = Chart()
chart.animate(data)
chart.animate(
Config(
{
"channels": {
"color": {"set": ["Country_code"]},
"label": {"set": ["Country_code"]},
"size": {"set": ["Value 5 (+/-)"]},
},
"title": "Bubble Chart",
"geometry": "circle",
}
)
)
Back to the Examples ----- Back to the Table of contents