JuliaDataFrameΒΆ
jobject.spad line 1148 [edit on github]
Julia DataFrame support
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- convert: % -> String
from ConvertibleTo String
- elt: (%, Integer) -> JuliaObject
from JuliaObjectAggregate
- elt: (%, Integer) -> JuliaVector JuliaObject
elt(obj, ind)
returns the element at index ind ofobj
. For example for a Tuple or a vector.- elt: (%, JuliaSymbol) -> JuliaObject
from JuliaObjectAggregate
- elt: (%, JuliaSymbol) -> JuliaVector JuliaObject
elt(obj, sym)
returns the propertysym
ofobj
.
- jdframe: (JuliaFloat64Matrix, List JuliaSymbol) -> %
jdframe(a, ls)
returns a data frame from data a and column namesls
.
- jdframe: JuliaFloat64Matrix -> %
jdframe(array)
returns an automatically created data frame.
- jlAbout: % -> Void
from JuliaObjectType
- jlApply: (String, %) -> %
from JuliaObjectType
- jlApply: (String, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %, %, %) -> %
from JuliaObjectType
- jlApply: (String, %, %, %, %, %, %) -> %
from JuliaObjectType
- jlDescribe: % -> %
jlDescribe(df)
returns basic statistics aboutdf
.
- jlId: % -> String
from JuliaObjectType
- jlRef: % -> SExpression
from JuliaObjectType
- jlref: String -> %
from JuliaObjectType
- jlType: % -> String
from JuliaObjectType
- latex: % -> String
from SetCategory
- less?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- matrix: % -> JuliaObject
matrix(df)
returns a copy of the internal DataFrame matrix.
- more?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- mutable?: % -> Boolean
from JuliaObjectType
- nothing?: % -> Boolean
from JuliaObjectType
- qelt: (%, Integer) -> JuliaObject
from JuliaObjectAggregate
- qelt: (%, Integer) -> JuliaVector JuliaObject
qelt(obj, ind)
returns the element at index ind ofobj
. For example for a Tuple or a vector.- qelt: (%, JuliaSymbol) -> JuliaObject
from JuliaObjectAggregate
- qelt: (%, JuliaSymbol) -> JuliaVector JuliaObject
elt(obj,
sym
) returns the propertysym
of obj. No checks are done regarding the existence of thesym
property. If it does not exist, Julia will throw an error.
- size?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- string: % -> String
from JuliaObjectType