GGally::ggpairs plot does not display correlation coefficients

感情迁移 提交于 2020-07-19 11:02:49

问题


I am trying to understand why the plot with the correlation coefficient is not showing while passing the command ggpairs(iris, mapping=ggplot2::aes(colour = Species))

console output

Here is what it looks like: the plots displaying the correlation coefficient are not visible

if i perform inspect element on the plot, the image tag in the html is:

<img id="img" width="100%" height="100%" style="display: inline;" src="http://127.0.0.1:27032/graphics/b7091da9-1a0a-4672-902e-7c844add4aa9.png">

I have just started learning R and hence this confounded me. I felt like it was an issue with the locale so i tried experimenting by

Sys.setlocale("LC_ALL", 'en_US.UTF-8')

By nothing changed despite calling the libraries again.

Here are some details:

R version 4.0.1 (2020-06-06) running on Arch Linux x86_64 5.6.15-arch1-1

> Sys.getlocale()
[1] "LC_CTYPE=en_US.UTF-8;LC_NUMERIC=C;LC_TIME=en_US.UTF-8;LC_COLLATE=C;LC_MONETARY=en_US.UTF-8;LC_MESSAGES=en_US.UTF-8;LC_PAPER=en_US.UTF-8;LC_NAME=C;LC_ADDRESS=C;LC_TELEPHONE=C;LC_MEASUREMENT=en_US.UTF-8;LC_IDENTIFICATION=C"

I apologize if I haven't provided enough data. I shall update this if that is the case.

Updating the post with the output from install.packages("GGally", type = 'source')


> install.packages("GGally", type = 'source')
Installing package into ‘/home/mogad0n/R/x86_64-pc-linux-gnu-library/4.0’
(as ‘lib’ is unspecified)
trying URL 'https://cran.rstudio.com/src/contrib/GGally_2.0.0.tar.gz'
Content type 'application/x-gzip' length 1393325 bytes (1.3 MB)
==================================================
downloaded 1.3 MB

* installing *source* package ‘GGally’ ...
** package ‘GGally’ successfully unpacked and MD5 sums checked
** using staged installation
** R
** data
*** moving datasets to lazyload DB
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded from temporary location
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (GGally)

The downloaded source packages are in
    ‘/tmp/RtmpvIM27v/downloaded_packages’

来源:https://stackoverflow.com/questions/62312493/ggallyggpairs-plot-does-not-display-correlation-coefficients

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!