Gregory J. Deckler on 21 Apr 2016 00:52:48
Provide the option of not removing duplicates automatically when creating R visualizations or provide the ability to create R datasets using the same syntax as shown in the comments when creating an R visualization
- Comments (14)
RE: "R" Don't remove duplicates
When linking to an SQL Server Analysis Services database cube, I don't directly have access to the right keys that make records unique to block duplicates from being removed. Therefore, when using cubes it may not be possible to get accurate data in R in some cases. Many statistics/visualizations are worthless when duplicates have been removed. Can someone explain why removing duplicates was ever a good idea?
RE: "R" Don't remove duplicates
I shouldn't have to add an ID or key field to get all the data. If I want to remove duplicates in R, it's trivial with the "unique" statement.
RE: "R" Don't remove duplicates
The workaround here is to add "ID column" to the data (don't use it in R script)
RE: "R" Don't remove duplicates
The comments of an R visualization show:
#dataset <- data.frame(Column)
However, I cannot use the same syntax to create my own data frame.