import plotly.graph_objects as go import numpy as np x = np.random.randn(1000) fig = go.Figure(data=[go.Histogram( x=x, histnorm='probability density' ...
確定! 回上一頁