Useful Links
Computer Science
Data Science
Pandas Library
1. Introduction to Pandas
2. Core Data Structures
3. Data Loading and Saving
4. Indexing and Data Selection
5. Data Cleaning and Preparation
6. Combining and Reshaping Data
7. Grouping and Aggregation
8. Working with Text Data
9. Working with Time Series Data
10. Multi-level Indexing
11. Data Visualization
12. Advanced Topics and Performance
Working with Text Data
String Methods
.str Accessor
Case Conversion
.str.lower()
.str.upper()
.str.title()
.str.capitalize()
Whitespace Handling
.str.strip()
.str.lstrip()
.str.rstrip()
String Splitting and Joining
.str.split()
.str.cat()
String Replacement
.str.replace()
Pattern Matching
.str.contains()
.str.match()
.str.extract()
.str.extractall()
String Properties
.str.len()
.str.count()
String Formatting
.str.repeat()
.str.pad()
.str.center()
.str.ljust()
.str.rjust()
Encoding and Decoding
.str.encode()
.str.decode()
Previous
7. Grouping and Aggregation
Go to top
Next
9. Working with Time Series Data