更改 R 中 CA 因子映射的大小?
Posted
技术标签:
【中文标题】更改 R 中 CA 因子映射的大小?【英文标题】:change the size of a CA factor map in R? 【发布时间】:2022-01-16 13:41:37 【问题描述】:我正在做 MCA 分析,我找到了一个绘图图。 但是,我不能改变它的大小,请问有人有想法吗?
library("FactoMineR")
mca=CA(data_mca)
mca
plot.CA(mca,invisible = c("row"))#this line gives me the plot
【问题讨论】:
【参考方案1】:我使用windows()
并单独创建了情节
library(FactoMineR)
data("decathlon")
mca=CA(decathlon,quanti.sup = 10:12,quali.sup = 13)
windows() # if you want to change the size then windows(width=10, height=4)
plot(res,choix="var", shadow = T, title="", cex = 1.2, cex.lab = 1.3)
原图:
library(FactoMineR)
data("decathlon")
mca=CA(decathlon,quanti.sup = 10:12,quali.sup = 13)
windows(width=10, height=4) # changed the size and width
plot(res,choix="var", shadow = T, title="", cex = 1.2, cex.lab = 1.3)
调整后的情节:
【讨论】:
以上是关于更改 R 中 CA 因子映射的大小?的主要内容,如果未能解决你的问题,请参考以下文章
导入制表符分隔的文本文件 - 无法更改列映射 SQL Server 2008