Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. X<-data.frame(table1=c("col1","col2"),types1=c("int","char(4)"))
  2. Y<-data.frame(table2=c("col2","col3"),types2=c("char(8)","tinyint"))
  3.  
  4. table1 types1 types2
  5. col1 int NA
  6. col2 char(4) char(8)
  7. col3 NA tinyint
  8.  
  9. table1 table2 types1 types2
  10. col1 NA int NA
  11. col2 col2 char(4) char(8)
  12. NA col3 NA tinyint
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement