You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example:
ax = df.plot.scatter(x='total_reads_mapped',
y='reads_mapped_to_CDS',
c='reads_mapped_to_rRNA', s= 60,
sharex=False # hack to get back the x label
# hack from: pandas-dev/pandas#10611
)
ax.set_title('CDS vs total mapped', y=1.05)
plt.tight_layout()
ax.figure.savefig(plot_dir + 'CDS_vs_total_mapped--color_by_rRNA_reads_mapped.pdf')
The text was updated successfully, but these errors were encountered:
pandas-dev/pandas#10611
Example:
ax = df.plot.scatter(x='total_reads_mapped',
y='reads_mapped_to_CDS',
c='reads_mapped_to_rRNA', s= 60,
sharex=False # hack to get back the x label
# hack from: pandas-dev/pandas#10611
)
ax.set_title('CDS vs total mapped', y=1.05)
plt.tight_layout()
ax.figure.savefig(plot_dir + 'CDS_vs_total_mapped--color_by_rRNA_reads_mapped.pdf')
The text was updated successfully, but these errors were encountered: