标签: python python-3.x jupyter-notebook ipython jupyter
在jupyter笔记本中,我正在使用大约3GB的.nc(netcdf)文件。我使用xarray.open_dataset(path_to_file)读取了它,并将其存储在名为temp的变量中。 当我尝试使用temp.to_dataframe()从中创建数据帧并将其存储在名为df_temp的变量中时,它会炸毁我的本地驱动器(C)的存储。 如何清除此变量已占用的空间?
xarray.open_dataset(path_to_file)
temp
temp.to_dataframe()
df_temp