-
As Ben and I previously discussed during our meeting, there are some potential problems with using do_hazard and calibration...
```
# ---------------------------------------------------------------…
-
1. Label crops directly on plot
2. add vertical line after landuse to separate form ET est.
3. Order crop stack by percentage of areas (look at ggplot code for pie chart)
-
In the very beginning, course asked to ggplot dataset without specifying 'mpg'.........
-
mpg %>%
group_by(class, manufacturer) %>%
summarise(mean_hwy = mean(hwy)) %>%
dplyr::filter(manufacturer %in% c("audi", "volkswagen", "toyota")) %>%
ggplot() +
geom_bar(aes(…
-
Hi!
Great work on the package. Do you plan to add [plotly](https://plotly.com/r/) support?
Cheers!
-
# Migration Refactor/Reorganization
## Description
This issue is to be treated as a placeholder for one of the changes that need to be accounted for during the JS-TS migration. The DOM properties …
-
I just encountered this case, it seems `geom_quiver` does not check if the dimensions are equal between X and Y. This causes a problem that the directions of the arrows do not correct. This is easily …
bart1 updated
2 years ago
-
Hello and thanks a lot for the great package!
I want to delete boxplot outliers as they're duplicates of jitters (but I want to keep the jitters). I have tried to set outlier.[any option] to NA or…
-
## Project Robyn
Hello all, I'm trying to use the api but when I execute the demo code, but it returns a strange error.
## Describe issue
_Error in grid.Call(C_stringMetric, as.graphicsAnnot…
-
A very minor changed in ggplot2 v3.0.0 is that this now works:
`ggplot(mtcars, aes(y = disp)) + geom_boxplot()`
So x isn't required. This could simplify some of our code, although I don't like that …