Josiah Parry

Results 176 issues of Josiah Parry

I'd like to be able to provide say 5 colors as hex codes as a new palette. Then I'd be able to use that new hypothetical palette with `palette_dynamic()` to...

enhancement

The plumber docs (as far as I can tell) do not show how to mark a parameter as required (or optional) without using the programmatic usage. I would prefer to...

It is not possible to pass the `nv` argument to irlba() via `...` in `prcomp_irlba()` Repro: ```r library(sfdep) library(spdep) library(spatialreg) geom

Right now `Dataframe` can be used as an input type to a function. However, `T` is not checked. ```rust #[derive(IntoDataFrameRow)] struct Row { v: i32, } #[extendr] fn dataframe_conversion(_data_frame: Dataframe)...

https://github.com/extendr/extendr/blob/d2c401487248c4fc18cbf9c5106a519ed3f556b8/extendr-api/src/wrapper/promise.rs#L60

https://github.com/extendr/extendr/blob/d2c401487248c4fc18cbf9c5106a519ed3f556b8/extendr-api/src/wrapper/primitive.rs#L34

I'm matching an Robj based on its rtype. Factors are of type integer, but it is not possible to extract them. ``` r library(rextendr) rust_function(r"-{ fn from_factor(x: Robj) { rprintln!("x...

Right now I am working through how to iterate through the rows of an `n x 2` matrix to create point structs from each row. It would be very nice...

Wrapper structs should be able to check for class inheritance. This is not possible today without being an Robj. E.g ```rust fn inherits_dbls(x: Doubles, cls: &str) -> bool { x.inherits(cls)...

The [`test-macro-snapshot.R` test](https://github.com/extendr/extendr/blob/master/tests/extendrtests/tests/testthat/test-macro-snapshot.R) exists in the `{extendrtests}` R package for integration testing. However, as far as I can tell, this does not actually test whether or not the connection between...