Computer Science, asked by us2505222, 6 months ago

write a program to create data series & then change the indexes of the series object in any

random order​

Answers

Answered by sy916431
1

Answer:

name any four numerical data formatting style in Excel

Answered by sandhyanairpune
11

Python Pandas program

import pandas as pd

import numpy as np

s=pd.Series([10,20,30,40,50],index=['I','J','K','L','M'])

print('Original Data Series:')

print(s)

s1=s.reindex(index=['K','I','M','L','J'])

print('Data Series after changing the order of index:')

print(s1)

Please mark as brainliest answer

Similar questions