kobekko94 / Yusuke-Flexdashboard-Practice

0 stars 0 forks source link

Minimizing new tools / learning #3

Open davclark opened 7 years ago

davclark commented 7 years ago

You're learning a LOT at once! I see that you are using both tidyverse and data.table. While these two ecosystems can be used together,, they embody different philosophies. Please stick to the tidyverse way of doing things for now. After you load library(tidyverse), you'll want to create "tibbles", which you can do with data_frame() (note _ instead of . from base R), or from a variety of data loading functions. In the current case, it's not necessary to do any conversion with data.table or data_frame.

kobekko94 commented 7 years ago

Noted. Thank you for the reminder!