write a program to create data series & then change the indexes of the series object in any
random order
Answers
Answered by
1
Answer:
name any four numerical data formatting style in Excel
Answered by
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
English,
2 months ago
Social Sciences,
2 months ago
Social Sciences,
6 months ago
Business Studies,
6 months ago
Economy,
10 months ago
Economy,
10 months ago