Skip to content

issue #11150 Ensure explicit column selection and data type setting in data reading process. #11302

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion machine_learning/sequential_minimum_optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,11 @@ def test_cancel_data():
with open(r"cancel_data.csv", "w") as f:
f.write(content)

data = pd.read_csv(r"cancel_data.csv", header=None)
data = pd.read_csv(
"cancel_data.csv",
header=None,
dtype={0: str}, # Assuming the first column contains string data
)

# 1: pre-processing data
del data[data.columns.tolist()[0]]
Expand Down