I noticed there is a similar issue here #42 and #25, but now I am trying to plot fviz_pca_indiv and the points appear with different size even supplying fill.indas suggested as possible solution in previous issues.
moreBact contains 4, columns with metadata and rows with abundance. All the visualizations look fine but the points seems to have different size and I can't control this even passing the pointsize parameter.
I modified the columns so I don't have to use as.factor in the future.
Neither of this ways worked the first one returns no distinct color between point and different size and the second one returns images with distinct colors per group but different sizes among points.
Dear @kassambara is there any trick I can do to fix this? Any help would be appreciated as I commented before I view the issues #42 and #25 but I couldn't see how to adapt the code above.
Dear all,
I noticed there is a similar issue here #42 and #25, but now I am trying to plot fviz_pca_indiv and the points appear with different size even supplying
fill.ind
as suggested as possible solution in previous issues.moreBact
contains 4, columns with metadata and rows with abundance. All the visualizations look fine but the points seems to have different size and I can't control this even passing thepointsize
parameter.First the PCA object
pcaMore <- PCA(moreFact[,-c(1:4)], graph = FALSE)
I modified the columns so I don't have to use as.factor in the future. Neither of this ways worked the first one returns no distinct color between point and different size and the second one returns images with distinct colors per group but different sizes among points.
Here is the dataset
Thanks in advance for all your time and help
Andrés