I am looking for a way to imitate the hist method of pandas.DataFrame using plotly. Here's an example using the hist method:
import seaborn as sns
import matplotlib.pyplot as plt
# load example data set
iris = sns.load_dataset('iris')
# plot distributions of all continuous variables
iris.drop('species',inplace=True,axis=1)
iris.hist()
plt.tight_layout()
which produces:
How would one do this using plotly?
EDIT:
I am looking for a method where the user doesn't explicitly has to define the number of rows and columns and where the output plot should be as 'square-like' as possible. pd.DataFrame.hist by default will create square-like plots when not being provided with a particular number of columns.
