Fffffuuuuuuu 2023-01-14 22:34 采纳率: 50%
浏览 43
已结题

name 'dashdot' is not defined怎样解决

用plotnine复现ggplot2绘制出来的图
NameError: name 'dashdot' is not defined

import pandas as pd
import patchworklib as pw 
from plotnine import *
from plotnine.data import *  
dat=pd.read_excel("Fig E3 Source Data.xlsx", sheet_name = "Metabolome")
FigE3a_metab =(ggplot(dat,aes(x='NEU', y='EOS')) +
  geom_point(size=2)+
  theme_bw()+ theme(panel_grid = element_blank()) +
  geom_hline(aes(yintercept = 0, linetype='dashdot')) +
  geom_hline(aes(yintercept = 1, linetype="dashed")) +
  geom_hline(aes(yintercept = -1, linetype="dashed")) +
  geom_vline(aes(xintercept = -1, linetype="dashed")) +
  geom_vline(aes(xintercept = 0, linetype='dashdot')) +
  geom_vline(aes(xintercept = 1, linetype="dashed")) +
  xlab("Correlation NEU: Directionality x - log(P)")+
  ylab("Correlation EOS: Directionality x - log(P)")+
  ggtitle("Differential MetaB modules"))
print(FigE3a_metab)

plotnine官网手册中linetype中短长虚线对应的就是dashdot,我不知道为什么会报错, 怎样修改才能运行出图片呢

  • 写回答

1条回答 默认 最新

  • m0_54204465 2023-01-14 22:45
    关注

    这是因为 'dashdot' 不是 plotnine 中预定义的线型。在 plotnine 中,可用的线型是 'solid','dashed' 和 'dotted'。
    你可以通过使用 'dotted' 或 'dashed' 来替代 'dashdot'。

    更改代码如下:

    geom_hline(aes(yintercept = 0, linetype='dotted')) +
    geom_hline(aes(yintercept = 1, linetype="dashed")) +
    geom_hline(aes(yintercept = -1, linetype="dashed")) +
    geom_vline(aes(xintercept = -1, linetype="dashed")) +
    geom_vline(aes(xintercept = 0, linetype='dotted')) +
    geom_vline(aes(xintercept = 1, linetype="dashed"))
    
    

    或者更改成

    geom_hline(aes(yintercept = 0, linetype='dashed')) +
    geom_hline(aes(yintercept = 1, linetype="dashed")) +
    geom_hline(aes(yintercept = -1, linetype="dashed")) +
    geom_vline(aes(xintercept = -1, linetype="dashed")) +
    geom_vline(aes(xintercept = 0, linetype='dashed')) +
    geom_vline(aes(xintercept = 1, linetype="dashed"))
    
    

    再次运行代码,就可以得到你想要的图片了。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 1月25日
  • 已采纳回答 1月17日
  • 修改了问题 1月14日
  • 创建了问题 1月14日

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来