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日

悬赏问题

  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题