I have a workflow where I use python for signal processing and R for analyses and plotting. From the python part, I get a large data frame (100 observations of 11165 variables) that I save and import it in R using feather. However, working with such a large df in RStudio is very slow when it comes to plotting (ggplot2
) or doing data wrangling.
Should I be working in a different format (i.e. list of lists?) to get more efficient memory management?