Nils

Results 15 comments of Nils

While I got the same error as @epmmko (https://github.com/jwass/mplleaflet/issues/41#issue-231882318), [the following](https://anaconda.org/conda-forge/mplleaflet) worked for me: > conda install -c conda-forge mplleaflet

this question has been answered here: https://stackoverflow.com/questions/69333890/using-jekylls-includes-with-remark/69365142?noredirect=1#comment122607165_69365142 the answer shows the reason, I haven't been able to find a workaround yet

posted this on stackoverflow: https://stackoverflow.com/questions/69329191/css-selector-parent-class-matches-child-class

> library(arcgisbinging) was that a typo? why call the library twice? Was omitting `arc.check_product()` intentional? I ran the following lines in `Rgui.exe` (64-bit) and it didn't crash: ``` r library(arcgisbinding)...

> change output location from "C:/Users/scratch.gdb/nc" to other where you have permission to write a new file. Tried this within RStudio IDE, still results in a hard crash

This is really confusing. I just ran the following lines in Rgui and RStudio, _and neither crashed!_ ``` library(arcgisbinding) arc.check_product() fc

Apparently, this will be available in `gdal` version 3.5: https://gdal.org/drivers/vector/arrow.html#vector-arrow

> responses for a particular survey ID you _have to_ provide the survey ID `get_responses()` > perform a select SQL query retrieving _all_ data and querying locally is not an...

[This comment](https://github.com/thomasp85/ggforce/pull/15#issuecomment-261184443) by @thomasp85 is probabbly related, at least he refers to the function causing the error (`units::make_unit_label` calling `base::parse`). I've tried substituting `parse(text = str)` with `as.expression(str)` which has...

Ok found a workaround. Setting `units_options(parse = FALSE)` solves the issue for me ``` r units_options(parse = FALSE) qplot(x=speed, y=`Distance Units`, data=df) ``` ![](https://i.imgur.com/Rbo1sAm.png) Created on 2020-04-23 by the [reprex...