You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2019. It is now read-only.
+1, but I would say our priority should be to get DataFrames working on 0.6 first. Else there's little point in having a clean API that cannot be used. :-)
In the interest of having an API consistent with that of Base, I think we should deprecate the following methods:
DataArray(T, ...)
in favor ofDataArray{T}(...)
(likewise forPooledDataArray
)isna(X)
in favor of dot-broadcastisna.(X)
(Deprecate vectorized isna in favor of dot-broadcast #243)NAtype
in favor ofNAType
(upper camel case preferred for type names)allna(x)
->all(isna, x)
(Deprecate anyna(x) in favor of any(isna, x) (same for allna) #244)anyna(x)
->any(isna, x)
(Deprecate anyna(x) in favor of any(isna, x) (same for allna) #244)padNA
->padna
, mostly for self-consistency (Miscellaneous deprecations #245)These functions don't really seem to belong here:
xtab
andxtabs
-- functionality provided by FreqTables (Miscellaneous deprecations #245)reldiff
andpercent_change
-- not specific toDataArray
s and apparently untested (Miscellaneous deprecations #245)Functions that could use more descriptive names:
gl
(may not belong here though a case could be made)Thoughts?
The text was updated successfully, but these errors were encountered: