You must specify the axis argument. default is axis = 0 which is rows columns is axis = 1.
so this should be your code.
df = df.drop('Max',axis=1)
edit: looking at this piece of code:
df = pd.read_csv('newdata.csv') df = df.drop('Max')
The code you used does not specify that the first column of the csv file contains the index for the dataframe. Thus pandas creates an index on the fly. This index is purely a numerical one. So your index does not contain “Max”.
try the following:
df = pd.read_csv("newdata.csv",index_col=0) df = df.drop("Max",axis=0)
This forces pandas to use the first column in the csv file to be used as index. This should mean the code works now.
Related Posts:
- how to sort pandas dataframe from one column
- How to reset index in a pandas dataframe? [duplicate]
- How to iterate over rows in a DataFrame in Pandas
- pandas read_json: “If using all scalar values, you must pass an index”
- How to iterate over rows in a DataFrame in Pandas
- Writing a pandas DataFrame to CSV file
- ImportError: No module named pandas
- How to change the order of DataFrame columns?
- ImportError: No module named pandas. Pandas installed pip
- How can I use the apply() function for a single column?
- Convenient way to deal with ValueError: cannot reindex from a duplicate axis
- How to groupby based on two columns in pandas?
- “Series objects are mutable and cannot be hashed” error
- Merging dataframes on index with pandas
- TypeError: ‘Series’ objects are mutable, thus they cannot be hashed problemwith column
- How to replace NaN values by Zeroes in a column of a Pandas Dataframe?
- ValueError: Length of values does not match length of index | Pandas DataFrame.unique()
- Convert Python dict into a dataframe
- DataFrame constructor not properly called! error
- Python pandas groupby aggregate on multiple columns, then pivot
- Error”Can only compare identically-labeled Series objects” and sort_index
- Pandas group-by and sum
- Python Pandas – Missing required dependencies [‘numpy’] 1
- pandas DataFrame “no numeric data to plot” error
- pandas: filter rows of DataFrame with operator chaining
- ‘DataFrame’ object has no attribute ‘sort’
- Pandas how to use pd.cut()
- How to Read .txt in Pandas
- How to read a .xlsx file using the pandas Library in iPython?
- Get total of Pandas column
- Plot pie chart and table of pandas dataframe
- Type error: cannot convert the series to
- TypeError: ‘DataFrame’ object is not callable
- Pandas ‘count(distinct)’ equivalent
- How to check whether a pandas DataFrame is empty?
- Convert columns to string in Pandas
- Change column type in pandas
- What does axis in pandas mean?
- AttributeError: Can only use .dt accessor with datetimelike values
- Combine two columns of text in pandas dataframe
- Python: pandas merge multiple dataframes
- How to load a tsv file into a Pandas DataFrame?
- How to count the NaN values in a column in pandas DataFrame
- xlrd.biffh.XLRDError: Excel xlsx file; not supported
- Pandas: change data type of Series to String
- Pandas – DataFrame object is not callable
- Selecting with complex criteria from pandas.DataFrame
- Convert pandas data frame to series
- module ‘pandas’ has no attribute ‘rolling_mean’
- How do I combine two dataframes?
- Normalize columns of pandas data frame
- Converting strings to floats in a DataFrame
- Get first row value of a given column
- Normalize columns of pandas data frame
- How to filter Pandas dataframe using ‘in’ and ‘not in’ like in SQL
- How to add an empty column to a dataframe?
- Pandas join issue: columns overlap but no suffix specified
- Count unique values per groups with Pandas [duplicate]
- How to apply a function to two columns of Pandas dataframe
- Convert categorical data in pandas dataframe
- pandas create new column based on values from other columns / apply a function of multiple columns, row-wise
- SettingWithCopyWarning even when using .loc[row_indexer,col_indexer] = value
- Loading a file with more than one line of JSON into Pandas
- OSError: Initializing from file failed on csv in Pandas
- AttributeError: Can only use .str accessor with string values, which use np.object_ dtype in pandas
- ValueError: Expected object or value when reading json as pandas dataframe
- Insert a row to pandas dataframe
- Python Pandas ValueError Arrays Must be All Same Length
- How to save a Seaborn plot into a file
- Subtract two columns in dataframe
- How to check if a column exists in Pandas
- pandas DataFrame: replace nan values with average of columns
- Pandas error “Can only use .str accessor with string values”
- How to get row number in dataframe in Pandas?
- AttributeError: ‘Series’ object has no attribute ‘reshape’
- Rename specific column(s) in pandas
- ImportError: No module named ‘xlrd’
- How to convert column with dtype as object to string in Pandas Dataframe
- Moving Average Pandas
- Coalesce values from 2 columns into a single column in a pandas dataframe
- Unknown format code ‘f’ for object of type ‘str’- Folium
- Pandas: sum up multiple columns into one column without last column
- python pandas remove duplicate columns
- Convert Pandas Column to DateTime
- matplotlib: plot multiple columns of pandas data frame on the bar chart
- Concat DataFrame Reindexing only valid with uniquely valued Index objects
- Python: Pandas pd.read_excel giving ImportError: Install xlrd >= 0.9.0 for Excel support
- Move column by name to front of table in pandas
- Pandas unstack problems: ValueError: Index contains duplicate entries, cannot reshape
- Python: Convert timedelta to int in a dataframe
- Must have equal len keys and value when setting with an iterable
- Pandas dataframe groupby plot
- Calculate weighted average using a pandas/dataframe
- Got continuous is not supported error in RandomForestRegressor
- ValueError: multiclass format is not supported
- How to convert .sav file into csv file
- ValueError: Must pass DataFrame with boolean values only
- Convert list of dictionaries to a pandas DataFrame
- Python Pandas : pivot table with aggfunc = count unique distinct
- AttributeError: ‘Series’ object has no attribute ‘split’ error in sending emails