JuliaDataFrameΒΆ

jobject.spad line 1148 [edit on github]

Julia DataFrame support

=: (%, %) -> Boolean

from BasicType

~=: (%, %) -> Boolean

from BasicType

coerce: % -> OutputForm

from CoercibleTo OutputForm

convert: % -> String

from ConvertibleTo String

copy: % -> %

from Aggregate

elt: (%, Integer) -> JuliaObject

from JuliaObjectAggregate

elt: (%, Integer) -> JuliaVector JuliaObject

elt(obj, ind) returns the element at index ind of obj. For example for a Tuple or a vector.

elt: (%, JuliaSymbol) -> JuliaObject

from JuliaObjectAggregate

elt: (%, JuliaSymbol) -> JuliaVector JuliaObject

elt(obj, sym) returns the property sym of obj.

empty?: % -> Boolean

from Aggregate

empty: () -> %

from Aggregate

eq?: (%, %) -> Boolean

from Aggregate

jdframe: (JuliaFloat64Matrix, List JuliaSymbol) -> %

jdframe(a, ls) returns a data frame from data a and column names ls.

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 about df.

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 of obj. For example for a Tuple or a vector.

qelt: (%, JuliaSymbol) -> JuliaObject

from JuliaObjectAggregate

qelt: (%, JuliaSymbol) -> JuliaVector JuliaObject

elt(obj, sym) returns the property sym of obj. No checks are done regarding the existence of the sym property. If it does not exist, Julia will throw an error.

sample: %

from Aggregate

size?: (%, NonNegativeInteger) -> Boolean

from Aggregate

string: % -> String

from JuliaObjectType

Aggregate

BasicType

CoercibleTo OutputForm

ConvertibleTo String

JuliaObjectAggregate

JuliaObjectType

JuliaType

SetCategory