首页 > 解决方案 > 使用 Jupyter 运行 python 包

问题描述

我对 Python 数据分析非常陌生。

我被要求在 Gitlab https://gitlab.com/imda-dsl/intelligent-sensing-toolboxhttps://gitlab.com/imda-dsl/intelligent-sensing-toolbox/blob/master/中查看这个包演示/Intelligent%20Sensing%20Toolkit%20Tutorial/Intelligent%20Sensing%20Toolbox%20Tutorial.md

我看到了一些命令:

%matplotlib inline
import pandas as pd

df = pd.read_csv('./energydata_complete.csv', index_col='date', parse_dates=[0])
df.head(3)

我有兴趣运行它们,我已经下载并安装了 Anaconda。上面的这些命令可以在 Jupyter 中运行吗?我对数据分析非常陌生,非常感谢您关于如何开始运行这些演示数据的指南。

标签: pythonmatplotlibjupyter

解决方案


是的,它在 Jupyter 中运行良好,大多数 python 包在 Jupyter 中运行良好。


推荐阅读