Skip to content

Commit

Permalink
Update version (#198)
Browse files Browse the repository at this point in the history
* Update docstring

* Update version
  • Loading branch information
AshlinHarris authored Mar 13, 2023
1 parent d298a3e commit 392743e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PreprocessMD"
uuid = "f785c8c6-3d80-4813-989a-2eb5f27d6bef"
authors = ["Ashlin Harris <[email protected]>"]
version = "3.1.0"
version = "3.1.1"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand Down
5 changes: 4 additions & 1 deletion src/PreprocessMD.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ const OPTIONAL_INT_TYPES = Union{Int,Nothing}
"""
function add_label_column!(feature_df, source_df, new_column[, id])
Add column to a DataFrame based on symbol presence in the target DataFrame
Add a label column to a DataFrame based on symbol presence in the target DataFrame
A column from the target is not copied.
Instead, the new column is a `CategoricalArray` containing `true` for any ID that is present in the target and `false` otherwise.
# Arguments
- `feature_df::AbstractDataFrame`: feature DataFrame to which label column is added
Expand Down

2 comments on commit 392743e

@AshlinHarris
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/79513

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v3.1.1 -m "<description of version>" 392743e11e59dfbef2813e550db4ddabe4f1acfc
git push origin v3.1.1

Please sign in to comment.