Certainly!
Here is a list of some basic and commonly used functions in the Pandas library:
1. **Creating DataFrames:**
- `[Link](data)`: Create a DataFrame from a dictionary,
list, or another DataFrame.
2. **Reading and Writing Data:**
- `pd.read_csv('[Link]')`: Read a CSV file into a DataFrame.
- `df.to_csv('[Link]')`: Write a DataFrame to a CSV file.
- `pd.read_excel('[Link]')`: Read an Excel file into a DataFrame.
- `df.to_excel('[Link]')`: Write a DataFrame to an Excel file.
- `pd.read_json('[Link]')`: Read a JSON file into a DataFrame.
- `df.to_json('[Link]')`: Write a DataFrame to a JSON file.
3. **Data Inspection:**
- `[Link](n)`: Return the first `n` rows of the DataFrame.
- `[Link](n)`: Return the last `n` rows of the DataFrame.
- `[Link]()`: Print a concise summary of the DataFrame.
- `[Link]()`: Generate descriptive statistics.
4. **Indexing and Selecting Data:**
- `df['column_name']`: Select a single column.
- `df[['col1', 'col2']]`: Select multiple columns.
- `[Link][row_indexer, column_indexer]`: Access a group of rows
and columns by labels.
- `[Link][row_indexer, column_indexer]`: Access a group of rows
and columns by integer position.
5. **Data Cleaning:**
- `[Link]()`: Remove missing values.
- `[Link](value)`: Fill missing values with a specified value.
- `[Link](columns=['col1', 'col2'])`: Drop specified columns.
- `[Link](columns={'old_name': 'new_name'})`: Rename
columns.
6. **Data Manipulation:**
- `df.sort_values(by='column_name')`: Sort the DataFrame by a
specified column.
- `[Link]('column_name')`: Group the DataFrame using a
column.
- `[Link](other_df, on='key')`: Merge DataFrames on a key
column.
- `[Link]([df1, df2])`: Concatenate DataFrames.
7. **Aggregation and Transformation:**
- `[Link]()`: Calculate the mean of each column.
- `[Link]()`: Calculate the sum of each column.
- `[Link]()`: Calculate the minimum value of each column.
- `[Link]()`: Calculate the maximum value of each column.
- `[Link](func)`: Apply a function along an axis of the
DataFrame.
8. **Date and Time Functions:**
- `pd.to_datetime(df['date_column'])`: Convert a column to
datetime.
- `df['date_column'].[Link]`: Extract the year from a datetime
column.
- `df['date_column'].[Link]`: Extract the month from a datetime
column.
9. **Pivoting and Reshaping:**
- `[Link](index='col1', columns='col2', values='col3')`: Pivot a
DataFrame.
- `[Link](id_vars=['col1'], value_vars=['col2', 'col3'])`: Unpivot a
DataFrame.
10. **Visualization:**
- `[Link]()`: Basic plotting of DataFrame columns.
These functions should cover a wide range of basic operations you might need when
working with Pandas.