class FrameSlice(T)

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.cr

Constructors

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


[View source]

Instance Method Detail

def c : T #

[View source]