We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I create a sheet using ipysheet.from_dataframe then the resulting sheet only allows pasting one column at the time.
ipysheet.from_dataframe
Example (tested in Jupyter Notebook and JupyterLab)::
sheet1 = ipysheet.from_dataframe(pd.DataFrame({"A":[1,2], "B":[3,4]})) sheet1
Copy the first row and paste it in the second row. The result is {"A":[1,1], "B":[3,4]}, instead of {"A":[1,1], "B":[3,3]}as expected.
{"A":[1,1], "B":[3,4]}
{"A":[1,1], "B":[3,3]}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I create a sheet using
ipysheet.from_dataframe
then the resulting sheet only allows pasting one column at the time.Example (tested in Jupyter Notebook and JupyterLab)::
Copy the first row and paste it in the second row. The result is
{"A":[1,1], "B":[3,4]}
, instead of{"A":[1,1], "B":[3,3]}
as expected.The text was updated successfully, but these errors were encountered: