I tried exploring everything in their website, but there is nothing regardless this (https://plotly.com/python/v3/frequency-counts/ and https://plotly.com/python/v3/discrete-frequency/ won't solve my issue). I wanted to plot a graph just like seaborn countplot (https://seaborn.pydata.org/generated/seaborn.countplot.html).
I have this dataset:
id state value
19292 CA 100
24592 CA 200
12492 GE 340
11022 GE 500
99091 CO 250
59820 CO 220
50281 CA 900
I just wanted a barplot with CA, GE and CO in the x-axis and 3, 2 and 2 in the y-axis, respectively.

