-
-
Notifications
You must be signed in to change notification settings - Fork 544
added geom_hex #1434
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
added geom_hex #1434
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good @bobidou23 , after small changes to make sure these examples are all runnable 💃
```{r, results='hide'} | ||
library(plotly) | ||
|
||
p <- ggplot(english_french, aes(x=engperc,y=frenperc)) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice if english_french
was assigned in this example too so that the code here could run independently of the first one.
```{r, results='hide'} | ||
library(plotly) | ||
|
||
p <- ggplot(english_french, aes(x=engperc, y=frenperc, weight=total)) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same comment as above re: english_french
```{r, results='hide'} | ||
library(plotly) | ||
|
||
p <- ggplot(english_french, aes(x=engperc,y=frenperc, weight=total)) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
again, if we could assign english_french
in this example before using it, that would be great.
Thanks @bobidou23 , feel free to merge this! 💃 |
No description provided.