class FrameSlice(T)
- FrameSlice(T)
- Reference
- Object
Overview
A FrameSlice
is a row copy of a DataFrame
. It owns its
own data, and cannot be modified. It is the result of a
row-wise slice of a DataFrame
.
When used it an operation against a DataFrame
, it broadcasts
against the columns of a DataFrame
, so that reductions will
always be able to be operated upon
Defined in:
frame/frame_slice.crConstructors
-
.new(**args : **T)
Initializes a DataFrame from a variadic number of arguments.
Instance Method Summary
Constructor Detail
def self.new(**args : **T)
#
Initializes a DataFrame from a variadic number of arguments.
This should only be used by the DataFrame
class, but remains
public