Skip to content

Commit

Permalink
fix pipe bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalmes committed Feb 12, 2021
1 parent 2ba0f89 commit a6e5d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/valdatefilters.jl
Expand Up @@ -986,7 +986,7 @@ function transform!(dnnr::DateValLinearImputer,xx::DataFrame)
valgator = DateValgator(dnnr.model)
fit!(valgator,x)
df=transform!(valgator,x)
df.Value = interp(df.Value) |> locf() |> nocb()
df.Value = interp(df.Value) |> locf |> nocb
return df
end

Expand Down

2 comments on commit a6e5d27

@ppalmes
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/29916

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 v2.6.3 -m "<description of version>" a6e5d27ffc85b178d5238a45ae8dec635b965f64
git push origin v2.6.3

Please sign in to comment.