jupyter notebook数组的使用
时间: 2023-10-18 11:05:58 浏览: 140
numpy_calculation_question_set-jupyter notebook安装
在jupyter notebook中,可以使用Numpy和Pandas这两个常用的数据包进行数组的表示和操作。数组是数据的组合,它是一种基础的数据类型和数据结构。在Python中,可以使用Numpy库来创建和处理多维数组,而Pandas库则提供了更高级的数据结构,例如Series和DataFrame,可以方便地对表结构进行处理和分析。
使用Numpy创建一维数组的方法如下:
```python
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
```
使用Pandas创建一维数组的方法如下:
```python
import pandas as pd
arr = pd.Series([1, 2, 3, 4, 5])
```
阅读全文