%%capture
!pip install --upgrade plotly
import pandas as pd
final = pd.read_csv("https://raw.githubusercontent.com/firmai/random-assets-two/master/test/file.csv")
final.head()
final.dtypes
import plotly.express as px
import numpy as np
typed = "In-sample"
fig = px.treemap(final, path=["Data","Acronym"], values=typed)
fig.show()