Skip to content

[Deprecation Warning] ggplot2 size parameter deprecated #3

@loganylchen

Description

@loganylchen

Description

在多处使用了ggplot2中已弃用的 size 参数:

R/GuitarPlot.R:

  • 第112行: geom_segment(..., size=1, ...)
  • 第154行: geom_line(..., size = 1)
  • 第157-158行: geom_line(..., size = 0.3) (两处)

Impact

  • 在ggplot2 >= 3.4.0 中会产生deprecation警告
  • 未来版本可能完全移除支持

Suggested Fix

size 替换为 linewidth

# 旧代码
geom_segment(..., size=1, ...)
geom_line(..., size = 1)

# 新代码
geom_segment(..., linewidth=1, ...)
geom_line(..., linewidth = 1)

File

R/GuitarPlot.R lines 112, 154, 157, 158

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions