Hey there,
I’ve got a CSV file with 161K rows and 262 columns. Each column is a month of a year starting from 01/99 to 07/20.
Each cell in the table has cumulative entry counts since 02-1999 written by some user.
I want to create a racing bar graph from this table but I can’t use the file as is, because that causes my browser to crash.
| nick | user_id | 01-1999 | 02-1999 | 03-1999 | |--------|---------|----------|---------|---------| | john | 94876 | 10 | 15 | 25 | | jayne | 559493 | 3 | 5 | 5 | | curtis | 99213 | 0 | 6 | 30 | Meaning that Curtis wrote 6 entries on 02-99 and 24 entries on 03-99.
My question is that how can I sort these rows so that I do not miss any information and that I could just pick the top 10K rows or so?
For example, if I only sort by the column 01-1999 curtis would be on the last row just because he had no entries on 01-1999. Considering that I’ve 161K rows like this I can’t figure out the order. Adding all the columns in the sort dialogue doesn’t help because then Libre Office crashes.