Advanced Options¶
The argument
sep
supports regular expression! For example,:::python df = pd.read_csv(file, sep+" +")
nrows: control the number of rows to read skiprows, skip blank lines (the default behavior)
namesarray-like, optional List of column names to use. If the file contains a header row, then you should explicitly pass header=0 to override the column names. Duplicates in this list are not allowed.
Slicing of Pandas Dataframes
Understand Index in pandas
Comments¶
- There are multiple ways to update the index of a DataFrame or Series.
First,
you can assign a new
Series
orIndex
object to the index of a DataFrame or Series. Or you can use methods such asDataFrame.set_index
orDataFrame.reset_index
.DataFrame.reset_index
resets the index of a DataFrame/Series to an integer index starting from 0. The old index is kept by default but can be dropped using the optiondrop=True