我正在寻找一种方法来绘制具有预定义字段的图像并获得如下结果:
我想从以下位置构建它:
(1):带有预定义 x 和 y 限制的字段的 PNG 图像,如下所示:
( 2):散点图,例如:
mpg %>%
ggplot() +
geom_point(mapping = aes(x = displ, y = hwy, color = class))
问题: 我该怎么做,理想情况下引用/修复字段限制到它们的 x 和 y 值?问候!
我认为你有两个基本的选择。
首先,您可以定义一个自定义主题。您也许可以使用其中一个主题包。例如ggthemr
。
其次,可能更好,添加自定义曲线,最初可能需要更多工作,具体取决于弯曲程度。但最终会更加灵活。 https://ggplot2.tidyverse.org/reference/geom_segment.html
第三个可能更好geom_path()
https://ggplot2.tidyverse.org/reference/geom_path.html
第四次使用多边形ggforce
。
https://luisdva.github.io/rstats/Grouping-points/