On R, you can easily:
filter:
frame <- frame[frame$some_column>0, ]
add a column:
frame$new_column <- frame$some_column * 100
Select unique elements:
unique(frame$some_column)
How can you achieve this with R Provider?
On R, you can easily:
filter:
frame <- frame[frame$some_column>0, ]
add a column:
frame$new_column <- frame$some_column * 100
Select unique elements:
unique(frame$some_column)
How can you achieve this with R Provider?
Copyright © 2021 Jogjafile Inc.
When you realize how heavily the R Provider relies on R.Net, it is easy to look on the internet and realize that you can do stuff like this: