📜  Python| Pandas MultiIndex.from_product()

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

Python| Pandas MultiIndex.from_product()

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas MultiIndex.from_product()函数从多个迭代的笛卡尔积中创建一个 MultiIndex。

示例 #1:使用MultiIndex.from_product()函数从多个可迭代对象的笛卡尔积构造 MultiIndex。

# importing pandas as pd
import pandas as pd
  
# Create the first iterable
Price =[20, 35, 60, 85]
  
# Create the second iterable
Name =['Vanilla', 'Strawberry']
  
# Print the first iterable
print(Price)
  
# Print the second iterable
print("\n", Name)

输出 :

现在让我们使用上述两个可迭代对象创建 MultiIndex。

# Creating the MultiIndex
midx = pd.MultiIndex.from_product([Name, Price],
                       names =['Name', 'Price'])
  
# Print the MultiIndex
print(midx)

输出 :

正如我们在输出中看到的,该函数使用这两个迭代的笛卡尔积创建了一个 MultiIndex 对象。示例 #2:使用MultiIndex.from_product()函数从多个迭代的笛卡尔积构造一个 MultiIndex。

# importing pandas as pd
import pandas as pd
  
# Create the first iterable
Snake =['Viper', 'Cobra']
  
# Create the second iterable
Variety =['Brown', 'Yellow', 'Black']
  
# Print the first iterable
print(Snake)
  
# Print the second iterable
print("\n", Variety)

输出 :

现在让我们使用上述两个可迭代对象创建 MultiIndex。

# Creating the MultiIndex
midx = pd.MultiIndex.from_product([Snake, Variety], 
                       names =['Snake', 'Variety'])
  
# Print the MultiIndex
print(midx)

输出 :

该函数使用两个可迭代对象创建了一个 MultiIndex。