我有一个data.frame
:
set.seed(15)
df_1 <- data.frame(
x = replicate(6, rnorm(n = 30, mean = 200, sd = 20)),
y = as.factor(sample(x = 1:3, size = 30, replace = TRUE))
)
我做了这个判别分析:
library(MASS)
discriminant <- lda(y ~ ., data = df_1)
我尝试使用ggord
包重命名(或删除)轴标签和图例主题。
library(ggord)
ggord(discriminant,
df_1$y,
veccol = 'transparent',
vec_lab = (''),
grp_title = 'Clusters')
LD1
和LD2
); Clusters
图例中的组名(而不是1
重命名为group_1
...)。我尝试使用以下参数删除:
labcol = 'transparent'
add_col = 'transparent'
,并使用
重命名axes = c("new_lab_x", "new_lab_y")
但是,不起作用。
对于legends
(Cluster
),我不能使用任何参数...