Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1. How to convert the first character of each element in a series to uppercase?
- 2. How to calculate the number of characters in each word in a series?
- 3. How to filter words that contain atleast 2 vowels from a series?
- ser = pd.Series(['apple', 'orange', 'plan', 'python', 'money'])
- 4. How to replace missing spaces in a string with the least frequent character?
- my_str = 'dbc deb abed gade'
- 5. How to count the number of missing values in each column?
- 6. How to replace missing values of multiple numeric columns with the mean? (Min and max price)
- 7. How to use apply function on existing columns with global variables as additional arguments?. n df, use apply method to replace the missing values in Min.Price with the column’s mean and those in Max.Price with the column’s median.
- https://raw.githubusercontent.com/selva86/datasets/master/Cars93_miss.csv
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement