Skip to content
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

coerce dtypes to objects #3

Merged
merged 1 commit into from
Aug 1, 2023
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: 6 additions & 0 deletions src/onemod/models/swimr_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,12 @@ def swimr_model(experiment_dir: Union[Path, str], submodel_id: str) -> None:
df_pred["holdout_id"] = holdout_id
df_pred["location_id"] = pd.to_numeric(df_pred["location_id"])
df_pred["sex_id"] = df_input["sex_id"].unique()[0]

# Since we are merging on columns specified in the col_id list, ensure they are the correct
# datatypes.
for id_col in settings["col_id"]:
df_pred[id_col] = df_pred[id_col].astype(df_input[id_col].dtype)

df_pred = df_pred.merge(
right=df_input[as_list(settings["col_id"]) + ["test", settings["col_pred"]]],
on=settings["col_id"],
Expand Down