Skip to content

Instantly share code, notes, and snippets.

@stephlocke
Last active March 16, 2016 16:36
Show Gist options
  • Save stephlocke/42078819a2100a3e0356 to your computer and use it in GitHub Desktop.
Save stephlocke/42078819a2100a3e0356 to your computer and use it in GitHub Desktop.
powerbi dataframe pickup
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
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