Ruaridh Williamson
Ruaridh Williamson
@michaelbynum, sorry about that. Branch is fixed now.
@michaelbynum, this should be ready to review whenever you get a chance
Which version of `mono` are you using? ``` mono -version ``` I don't think this package has worked with `mono` for the past three years though your error message suggests...
`mono` is a cross-platform port of .NET for Linux/macOS developers. If your work is on a Windows machine then it's much easier to stick with the native .NET framework. Since...
Ok, try downloading the binary zip file and run ``` install.packages("path/to/rClr_0.7-4.zip", repos = NULL) ```
@rbalestro, running [this code](https://github.com/jmp75/rClr/issues/35#issuecomment-382509512) has worked for myself in the past provided Mono 3 is installed. Again, if using Windows 10 and you don't *need* to use mono, then the...
Agree with @the-tourist-. I have had to resort to terminating R completely and restarting as I could not find an inverse of `clrLoadAssembly` and all attempts to unload the package...
@jmp75 that *ClrFacade.dll* line isn't doing anything as it's commented out. It's from [Makevars.in](https://github.com/jmp75/rClr/blob/fa41e2ae3c47b4eeff317891e7b61eccf860bfe7/src/Makevars.in#L124) The error is actually > cp: illegal option -- u which is valid on Linux but...
Can you provide some context about what caused the error? Here is some documentation on producing [reproducible examples](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) that can help diagnose problems you're facing. If you can't provide a...
This has been covered in #22 and #26. The underlying package rClr [doesn't support these datatypes](https://github.com/jmp75/rClr/blob/fa41e2ae3c47b4eeff317891e7b61eccf860bfe7/src/rClr.cpp#L933). This is easily fixed with a `CAST` statement otherwise see the workaround [provided by...