密谋表示保存不完整的图像

时间:2020-09-17 11:45:36

标签: python plot plotly

在jupyter笔记本中看到的图像与保存在输出路径中的图像之间存在差异:

fig_list = np.array([sel_geophy, sel_geochem, sel_geol, sel_struct])
fig_list_text= np.array(['sel_geophy', 'sel_geochem', 'sel_geol', 'sel_struct'])

k=1  
#for f in range (0,fig_list.shape[0]):
for f in range (0,2):       
    plt.figure(figsize=[15,5])
    fig = px.parallel_coordinates(df[fig_list[f]], color=targetcolumn,color_continuous_scale= "Viridis", color_continuous_midpoint=0.5)
    fig.update_layout(autosize=False,width=3000,height=300)
    outpath2 = 'C:/xxxx/' + str(fig_list_text[f]) +'_' + str(targetlist[k]) +'.pdf'
    fig.write_image(outpath2)
    fig.show()

这是我在笔记本中看到的:

enter image description here

这是我在导出的输出中看到的:

enter image description here

我认为write_fig函数中导出的样本数量最大,这是一个已知问题吗?

如果任何人都可以想到解决此问题的方法,我将非常高兴。

0 个答案:

没有答案