我想删除索引列,如图所示,它已经具有。我要删除两者之一。我的想法是使用index_ignore = True,但不确定将其放置在何处。
screenshot index column, SQLalchemy in python
import pandas as pd
from sqlalchemy import create_engine
db_file = r'learn-data-analysis-w-python-master/datasets/salesdata.db'
engine = create_engine(r'sqlite:///{}'.format(db_file))
sql = 'SELECT * from scores'
sales_data_df = pd.read_sql(sql, engine)
sales_data_df
答案 0 :(得分:1)
在没有数据可以尝试我的解决方案的情况下,我可以建议您尝试
sales_data_df.drop(['index'], axis=1)