mwsohn
mwsohn
Currently a categorical array on the left hand side in a GLM model generates an error message: ``` MethodError: no method matching zero(::Type{CategoricalArrays.CategoricalValue{Int8,UInt32}})[0m Closest candidates are: zero([91m::Type{Base.LibGit2.GitHash}[39m) at libgit2\oid.jl:106 zero([91m::Type{Base.Pkg.Resolve.VersionWeights.VWPreBuildItem}[39m)...
It is not currently defined in GLM. Can this be added? It is required for pseudo R2 for GLM models. I think this works: ``` function StatsBase.nulldeviance(obj::GeneralizedLinearModel) return deviance( glm(@formula(y...
Here's the error message: ERROR: MethodError: no method matching write(::String, ::DataFrame; append=true) Closest candidates are: write(::AbstractString, ::Any; description, metadata) at C:\Users\mwsoh\.julia\packages\Feather\pbm3o\src\sink.jl:30 got unsupported keyword argument "append" write(::AbstractString; kwargs...) at C:\Users\mwsoh\.julia\packages\Feather\pbm3o\src\sink.jl:10...
Has this been reported as an issue before? Is there a way to get around this issue?
Can a g_type for Date and DateTime for ListStore?
The NamedArray I want to print has five columns. I use “print” function to print it. Only four columns are printed and the middle column is replaced by an ellipsis....
Here's the error message: ```julia julia> using NamedArrays INFO: Recompiling stale cache file C:\Users\ms5vs\.julia\lib\v0.6\Combinatorics. ji for module Combinatorics. WARNING: The call to compilecache failed to create a usable precompiled cache...
The following code explains the problem: using DataFrames, CategoricalArrays, FreqTables df = DataFrame(id = 1:9, race = repeat(collect(1:3),3)) df.race = categorical(df.race) freqtable(df,:race) 3-element Named Vector{Int64} race │ ──────┼── 1 │...