You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When debugging csv files, it's really useful to be able to talk about row numbers, e.g. "the value at column Weight, in row number 3, should not be negative".
I can achieve something like that now with:
using DataFrames
transform!(df, eachindex =>:rownumber)
But this breaks apart when csv files contain empty lines (some people use empty lines to visually separate groupings more easily).
The text was updated successfully, but these errors were encountered:
When debugging csv files, it's really useful to be able to talk about row numbers, e.g. "the value at column
Weight
, in row number3
, should not be negative".I can achieve something like that now with:
But this breaks apart when csv files contain empty lines (some people use empty lines to visually separate groupings more easily).
The text was updated successfully, but these errors were encountered: