https://github.com/ttwag/p9_pandas
Problems that Introduce the DataFrame Object in Python's Pandas Library
https://github.com/ttwag/p9_pandas
data-analysis pandas-dataframe python
Last synced: about 1 year ago
JSON representation
Problems that Introduce the DataFrame Object in Python's Pandas Library
- Host: GitHub
- URL: https://github.com/ttwag/p9_pandas
- Owner: ttwag
- Created: 2023-12-22T04:58:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-22T05:04:11.000Z (over 2 years ago)
- Last Synced: 2025-02-17T11:15:11.516Z (over 1 year ago)
- Topics: data-analysis, pandas-dataframe, python
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Analysis with Pandas
This repository contains the solutions to LeetCode's Introduction to Pandas problems.
These problems build up the fundamentals for working with the DataFrame object in Python's Pandas library.
The problems are:
* Create a DataFrame from list
* Get the Size of a DataFrame
* Display the First Three Rows
* Select Data
* Create a New Column
* Drop Duplicate Rows
* Drop Missing Data
* Modify Columns
* Rename Columns
* Change Data Type
* Fill Missing Data
* Reshape Data: Concatenate
* Reshape Data: Pivot
* Reshape Data: Melt
* Method Chaining
## File Structure
Each problem is stored in a separate .py file. Each .py files has the problem number and name.
## Helpful Links
Visit https://leetcode.com/studyplan/introduction-to-pandas/ to see the problems.