-
Making a similar data set
```
Continent.range %
group_by(continent, year) %>%
summarise(Min_gdpPercapita = min(gdpPercap), Max_gdpPercapita = max(gdpPercap))
```
Now lets look at…
-
I was trying to plot the data which has multiple dimensions. One dimension R only have four values (3,4,5,6), but the MarkerSize will show 5 values (3, 3.75, 4.5, 5.25, 6) in the legend, and I didn't …
-
I am a fan of showing graphs [layer by layer in slideshows](https://evangelinereynolds.netlify.com/post/layered-presentation-of-graphics-take-2/). I find that my workflow ends up being something like
…
-
@fran2or I wonder if you or perhaps @jkmusyoka could check that I am not doing something silly here. I really like the geom_parallel_lines function, that is in the moderndive package.
It is workin…
-
I am trying to implement the calculation for simple slopes estimation for probit models in lavaan as it is currently not support in semTools (I will cross-post).
The idea is to be able to plot the…
-
R
[用 ggplot 绘制分级统计地图](http://rforpublichealth.blogspot.de/2015/10/mapping-with-ggplot-create-nice.html)
[R for Public Health](http://rforpublichealth.blogspot.de/) - r 出图实例,含代码与 database
-
```
codelf
-
Perhaps it might be good to separate out the package column into package and author?
Also, visualising this is harder than I thought.
``` r
library(readr)
tidyverse_gh_stars Parsed with colum…
-
I am trying to use a common title and subtitle for my plots. How can I add a line below the title, that is also in a different font?
Here is a MWE of what I'm doing:
```
library(tidyverse)
lib…
-
When using the '{}' construction in the format pattern, a string representation of the value is substituted into the result.
It would be better to use the default formatted value.
For example, we …