-
Notifications
You must be signed in to change notification settings - Fork 55
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
@newcol in @byrow! not defined #54
Comments
It may be that the readme is ahead of the released version of ---------- Forwarded message ---------- Hi. Sorry to be a bother. I'm getting an error saying "UndefVarError df = DataFrame(A = 1:3, B = [2, 1, 2]) I'm trying to apply this to my own dataframe to bring separate time and dateForm = Dates.DateFormat("d-u-y H") However, the error with @newCol is raised. It's likely I'm missing — |
Yes, last version was in December, and these functions are newer than that AFAIK. It's indeed always confusing that you get the development version of the README when you browser a GitHub project. In the long-term, I guess documentation should move to Documenter.jl anyway. |
Thank you guys! I apologize for the mistake. |
Hi. Sorry to be a bother. I'm getting an error saying "UndefVarError @newCol not defined", when running the block in the readme that includes @byrow! and @newCol as displayed below.
I'm trying to apply this to my own dataframe to bring separate time and date columns into a single column that contains DateTime elements. I was thinking this would work:
dateForm = Dates.DateFormat("d-u-y H")
newMachineData = @byrow! MachineData begin
@newCol DT::Array{DateTime}
:DT = DateTime(string(:DATE, " ", :HOUR), dateForm)
end
However, the error with @newCol is raised. It's likely I'm missing something simple though. I am new to Julia
The text was updated successfully, but these errors were encountered: