Pandas Assignment 1
Pandas Assignment 1
Sample Series:
NumPy array:
[10 20 30 40 50]
Converted Pandas series:
0 10
1 20
2 30
3 40
4 50
dtype: int64
3) Write a Pandas program to change the data type of given a column or a Series.
Sample Series:
Original Data Series:
0 100
1 200
2 python
3 300.12
4 400
dtype: object
Change the said data type to numeric:
0 100.00
1 200.00
2 NaN
3 300.12
4 400.00
dtype: float64
6) Upload and read the data from the .csv file and perform the following basic
operations on movies data
https://drive.google.com/drive/folders/1bKHxzQTYs929WLfPYKdJnF6-
wyLwFuO2?usp=sharing
Read data
Data Selection – Based on Conditional filtering (write any 10 filter conditions as you understanding data)
Sorting operation
Dropping columns