Is there a way in Danfo.js to change the value of a single cell?

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 ?