📜  Python中的 pandas.array()函数

📅  最后修改于: 2022-05-13 01:55:50.037000             🧑  作者: Mango

Python中的 pandas.array()函数

此方法用于从所需数据类型的序列创建数组。

以下是上述方法的实现以及一些示例:

示例 1:

Python3
# importing packages
import pandas
  
# create Pandas array with dtype string
pd_arr = pandas.array(data=[1,2,3,4,5],dtype=str)
  
# print the formed array
print(pd_arr)


Python3
# importing packages
import pandas
import numpy
  
# create Pandas array with dtype from numpy
pd_arr = pandas.array(data=['1', '2', '3', '4', '5'],
                      dtype=numpy.int8)
  
# print the formed array
print(pd_arr)


输出 :


['1', '2', '3', '4', '5']
Length: 5, dtype: str32

示例 2:

Python3

# importing packages
import pandas
import numpy
  
# create Pandas array with dtype from numpy
pd_arr = pandas.array(data=['1', '2', '3', '4', '5'],
                      dtype=numpy.int8)
  
# print the formed array
print(pd_arr)

输出 :


[1, 2, 3, 4, 5]
Length: 5, dtype: int8