0

Is there a possibility of increasing the size of the plot plotted using z.showplot() in qubole notebooks.

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)

1 Answers1

0

Could you try setting the plot size by:

plt.figure(figsize=(8, 8))

This should ideally help in case of Zeppelin notebook in Qubole; let me know how this goes!

Pedram Parsian
  • 3,750
  • 3
  • 19
  • 34