【发布时间】:2021-08-17 16:43:51
【问题描述】:
我在尝试保存我的 jupyter 笔记本时遇到问题。
它显示:
Unexpected error while saving file: notebook.ipynb HTTP 500: Internal Server Error (Couldn't save the `notebook)`
我的代码:
# Read in dataset
import pandas as pd
apps_with_duplicates = pd.read_csv("datasets/apps.csv")
# Drop duplicates from apps_with_duplicates
apps = apps_with_duplicates.drop_duplicates()
# Print the total number of apps
print('Total number of apps in the dataset = ', len(apps))
# Have a look at a random sample of 5 rows
n = 5
apps.sample(n)
感谢和问候,
【问题讨论】:
标签: python pandas jupyter-notebook jupyter