I understood Danfo.js is the Javascript equivalent to Pandas. Now I have a Danfo dataframe and want to change the cell at row i and column "name". In pandas I would use
df.at(i,'name') = new_value
However with Danfo I get cannot assign to function call
. Is there a way to to this ?
You can access and modify the underlying array using
df.values
.TypeScript will complain at the array indexing but
as any
will suppress it.