是否有可能在qubole notebooks中使用z.showplot()增加绘图的大小。
import matplotlib as plt
plt.figure()
plt.bar(pandas_df_hr_sg[:]['hour'],pandas_df_hr_sg[:]['count'])
plt.title('Hourly wise user visits')
plt.xlabel('Hour')
plt.ylabel('Visit Count')
z.showplot(plt)发布于 2019-12-17 07:35:48
您可以尝试通过以下方式设置打印大小:
plt.figure(figsize=(8, 8))理想情况下,这会对Qubole中的Zeppelin笔记本有帮助;让我知道这是怎么回事!
https://stackoverflow.com/questions/59335479
复制相似问题