Skip to content

[pull] master from TheAlgorithms:master #39

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 3 commits into from
Jun 3, 2024
Merged
Changes from 1 commit
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
Next Next commit
issue TheAlgorithms#11150 Ensure explicit column selection and data t…
…ype setting in data reading process. (TheAlgorithms#11302)

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

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
MannCode and pre-commit-ci[bot] authored Jun 3, 2024
commit 2f1704dae579295ea2f47584ef80b4b321a284d7
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