Rumyana Tsoneva
Rumyana Tsoneva

Reputation: 3

Mitosheet Not able to edit cell values

I am trying to use Mitosheet to edit a dataframe in Jupyter Notebook (I've tried using Jupyter Lab - same result), but every time I try to edit a cell, I get an error:

Sorry, there was an error during executing this code.

I double click a cell, turn off the Edit entire column, introduce a new value and click Enter. And I get this:

enter image description here

I've reinstalled the mitosheet package, but this did not fix it.

Or here I've tried to edit a text column of a simple dataframe:

enter image description here

I can edit the numeric column though:

enter image description here

I've tried reinstalling the package, run it via Jupyter notebook and Jupyter lab, test with different dataframes. I expect to be able to edit the cell values of all columns in a dataframe.

Upvotes: 0

Views: 93

Answers (1)

Sedrago
Sedrago

Reputation: 11

Mitosheet expects you to enter a formula.

Double click the cell you would like to edit and enter a formula. The different available formulas will appear as you write.

Examples: TEXT('abc') - will put the string 'abc' into the cell. FLOAT('3.4') - will put the float 3.4 into the cell.

Set "Edit entire column" to "Off" if you just want to change the cell you are editing. "On" will change every value in the whole column.

Upvotes: 1

Related Questions