Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display correlation coefficient on the upper panel. #9

Open
tellyshia opened this issue Jun 13, 2018 · 1 comment
Open

Display correlation coefficient on the upper panel. #9

tellyshia opened this issue Jun 13, 2018 · 1 comment

Comments

@tellyshia
Copy link

Hi @garthtarr ,
I like the interactive part very much. I wish I could display correlation coefficient on the upper panel since the information on both panels are rather redundant. Have you thought of that before?

@garthtarr
Copy link
Owner

Hi, yes it's a good idea. However, it's not a priority for me to implement at this stage (happy to take pull requests).

As an alternative, you might consider using GGally::ggpairs() in conjunction with plotly::ggplotly(). For example:

# install.packages("GGally")
# install.packages("plotly")
library(GGally)
data(tips, package = "reshape")
pm <- ggpairs(tips, columns = c(1, 2, 7)) + theme_bw()
pm
ggplotly(pm)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants