“Python | Pandas multiindex.is_lexsortted ()” Réponses codées

Python | Pandas multiindex.is_lexsortted ()

"""Now let’s check if the labels in the MultiIndex are lexicographically sorted or not."""
# check if labels are sorted or not
midx.is_lexsorted()
Shy Skunk

Python | Pandas multiindex.is_lexsortted ()

""" Example #1: Use MultiIndex.is_lexsorted() function to check if the MultiIndex labels 
are lexicographically sorted or not.""""
# importing pandas as pd
import pandas as pd
  
# Create the MultiIndex
midx = pd.MultiIndex.from_arrays([['Networking', 'Cryptography',
                                     'Anthropology', 'Science'], 
                                             [88, 84, 98, 95]])
  
# Print the MultiIndex
print(midx)
Shy Skunk

Réponses similaires à “Python | Pandas multiindex.is_lexsortted ()”

Questions similaires à “Python | Pandas multiindex.is_lexsortted ()”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code