Last active
March 16, 2016 16:36
-
-
Save stephlocke/42078819a2100a3e0356 to your computer and use it in GitHub Desktop.
powerbi dataframe pickup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(data.table) | |
| iris1<-iris # shows up | |
| iris2<-iris # shows up | |
| iris3<-setDT(copy(iris)) # shows up | |
| iris4<-setDT(copy(iris)) # doesn't show up |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(dplyr) | |
| iris1<-iris # shows up | |
| iris2<-iris # shows up | |
| iris3<-tbl_df(iris) # doesn't show up | |
| iris4<-tbl_df(iris) # doesn't show up |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment