fslaborg / RProvider

Access R packages from F#
http://fslab.org/RProvider/
Other
235 stars 69 forks source link

Replace "." with "_" in library names for consistency. #226

Closed nhirschey closed 2 years ago

nhirschey commented 2 years ago

Describe the bug In general, RProvider replaces "." in function names with "_". It does not do this for packages/libraries. For example, in the below example I think that it should be open RProvider.data_table instead of open RProvider.data.table so that the function name data_table is consistent with the library name.

image

It will also help discoverability, because right now RProvider.data does not bring up data.table as an option.

image

You have to type RProvider.data. and then autocomplete suggests table.

image

dsyme commented 2 years ago

Agreed