I am having a CSV file with two columns
- col1-
Timestamp
data(yyyy-mm-dd hh:mm:ss.ms (8 months data)) - col2 : Heat data (continuous variable)
As there are almost 50k records, I want to partition the column 1 (timestamp col) into months and then apply box plot on the heat data with respect to timestamp. It have tried the same in R but it took very long time. I think I shoud use seaborn.boxplot . What you suggest?