gpt4 book ai didi

r - 如何根据向量值在点图中使用不同的符号

转载 作者:行者123 更新时间:2023-12-03 02:35:44 26 4
gpt4 key购买 nike

我有位置(坐标)和环境数据,我想为数据集中的每个环境变量创建点图(请参阅下面的示例数据和代码)。我不想使用每个点图中所有点的单个符号(例如 pch=16),而是使用由一度纬度线确定的唯一符号,例如绝对值(纬度)。

我的 R 示例数据集:

WW_Covs <- structure(list(Latitude = c(62.4419, 67.833333, 65.95, 63.72935,
60.966667, 60.266667, 55.660455, 62.216667, 61.3, 61.4, 62.084139, 55.662566,
64.48508, 63.208354, 62.87591, 62.70856, 62.64009, 63.79488, 59.55, 62.84206), BIO_02
= c(87, 82, 75, 70, 77, 70, 59, 84, 84, 79, 85, 60, 91, 87, 74, 74, 76, 70, 76, 74),
BIO_03 = c(26, 23, 25, 26, 25, 24, 25, 25, 26, 25, 26, 26, 24, 25, 24, 25, 25, 25, 26,
24), BIO_04 = c(8443, 9219, 7594, 6939, 7928, 7593, 6160, 8317, 8167, 7972, 8323,
6170, 9489, 8578, 7814, 7680, 7904, 7149, 7445, 7803), BIO_05 = c(201, 169, 151, 166,
194, 210, 202, 205, 204, 186, 205, 200, 200, 195, 170, 154, 180, 166, 219, 170),
BIO_06 = c(-131, -183, -144, -102, -107, -75, -26, -119, -113, -120, -120, -28, -169,
-143, -131, -142, -124, -111, -72, -129), BIO_08 = c(128, 109, 85, 78, 122, 145, 153,
134, 130, 126, 132, 152, 120, 119, 115, 98, 124, 104, 147, 115), BIO_09 = c(-31, -81,
-16, 13, -60, -6, 25, -25, -25, -70, -25, 23, -56, -39, -47, -60, -39, 8, 0, -46),
BIO_12 = c(667, 481, 760, 970, 645, 557, 645, 666, 652, 674, 670, 670, 568, 598, 650,
734, 620, 868, 571, 658), BIO_13 = c(78, 77, 96, 109, 85, 70, 67, 77, 84, 93, 78, 68,
72, 78, 93, 99, 90, 96, 72, 93), BIO_15 = c(23, 40, 25, 21, 36, 30, 21, 24, 28, 34,
24, 22, 28, 29, 34, 32, 36, 22, 30, 34), BIO_19 = c(147, 85, 180, 236, 108, 119, 154,
149, 135, 118, 148, 162, 117, 119, 120, 141, 111, 204, 111, 122)), .Names =
c("Latitude", "BIO_02", "BIO_03", "BIO_04", "BIO_05", "BIO_06", "BIO_08", "BIO_09",
"BIO_12", "BIO_13", "BIO_15", "BIO_19"), row.names = c(1:20), class = "data.frame")

我的 R 点图代码:

library(lattice)    
dotplot(as.matrix(WW_Covs[,-c(1:8)]), groups = FALSE,
strip = strip.custom(bg = 'white', par.strip.text = list(cex = 0.8)),
scales = list(x = list(relation = "free"), y = list(relation = "free"),
draw = FALSE), col = 1, cex = 0.5, pch = 16, xlab = "Value of the variable",
ylab = "Order of the data from text file")

最佳答案

我已将您的数据导入为 en(简单名称:))。请告诉我我是否理解您的问题以及这是否是您所追求的。

library(lattice)
floor <- as.factor(floor(en$Latitude))

dotplot(as.matrix(en[,-c(1:8)]), groups = FALSE,
strip = strip.custom(bg = 'white', par.strip.text = list(cex = 0.8)),
scales = list(x = list(relation = "free"), y = list(relation = "free"),
draw = FALSE), col = 1, cex = 1, pch = floor, xlab = "Value of the variable",
ylab = "Order of the data from text file")

enter image description here

更新

如果要更改绘图符号,可以更改floor对应的级别。

> levels(floor)
[1] "55" "59" "60" "61" "62" "63" "64" "65" "67"
> levels(floor) <- 1:length(levels(floor))
> levels(floor)
[1] "1" "2" "3" "4" "5" "6" "7" "8" "9"

关于r - 如何根据向量值在点图中使用不同的符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9904015/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com