programming:python:pandas
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
programming:python:pandas [2022/05/29 18:50] – levor | programming:python:pandas [2023/07/20 07:32] (current) – levor | ||
---|---|---|---|
Line 3: | Line 3: | ||
| command | examples | explanation / remarks | | | command | examples | explanation / remarks | | ||
- | | loc[] | df.loc[row_name_str, | + | | .loc[] | df.loc[row_name_str, |
| `iloc[]` | `df.iloc[row_i, | | `iloc[]` | `df.iloc[row_i, | ||
+ | | .columns | col_titles_list = df.columns | get list of the column titles (headers) | | ||
| `columns.get_loc()` | `col_i=df.columns.get_loc(col_name_s)` | get index of column by name (string) | | | `columns.get_loc()` | `col_i=df.columns.get_loc(col_name_s)` | get index of column by name (string) | | ||
| `at[]` | `df.at[row_s, | | `at[]` | `df.at[row_s, | ||
Line 10: | Line 11: | ||
| drop() | new_df = df.drop(' | | drop() | new_df = df.drop(' | ||
| equals() | same_data_b = df1.equals(df2) | function that returns a boolean, True if dataframes have the same information, | | equals() | same_data_b = df1.equals(df2) | function that returns a boolean, True if dataframes have the same information, | ||
- | | columns.get_loc() | example | get integer location of column, by its name | | + | | columns.get_loc() | (example?) | get integer location of column, by its name | |
- | | index.get_loc() | example | get integer location of row, by its name | | + | | index.get_loc() | (example?) | get integer location of row, by its name | |
+ | | .sort_values(column_name) | output_df = df.sort_values(col_name)\\ output_df = df.sort_values(by=[col_name_1, | ||
import pandas | import pandas | ||
programming/python/pandas.1653850232.txt.gz · Last modified: 2022/05/29 18:50 by levor