I am working with Google indicators and I want to have lines plots with facet. In order to do this I wrote this line of code, but unfortunately I have bar plots not line plots.
dataset_num = df.select_dtypes(include = ['float64', 'int64'])
dataset_num.head()
dataset_num.hist(figsize=(16, 20), bins=50, xlabelsize=8, ylabelsize=8);
Results from code above is this facet barplots
I try with this line of code but is not working
dataset_num.lineplots(figsize=(16, 20), bins=50, xlabelsize=8, ylabelsize=8);
So can anybody help me how to solve this ?