DillonHammill / DataEditR

An Interactive R Package for Viewing, Entering Filtering and Editing Data
https://dillonhammill.github.io/DataEditR/
384 stars 40 forks source link

Using custom reading functions within read_fun(). e.g. read_fun = 'readxl::read_excel' #70

Closed anishjoni closed 5 months ago

anishjoni commented 5 months ago

I am trying to load an excel file to edit it using DataEditR. I see dataInputServerhas read_fun parameter that can be used for reading csv.

How do I use it to read excel or does DataEditR support reading Excel files in some other way? e.g. Something like this read_fun = 'readxl::read_excel'

anishjoni commented 5 months ago

Looks like the current implementation does support this.

This worked for me

data_input1 <- dataInputServer("input1", 
                              read_fun = 'read_excel')