What is a DataFrame in RedAmber ? #85
Answered
by
heronshoes
heronshoes
asked this question in
Q&A
-
What is a DataFrame in RedAmber ?データフレームって何? |
Beta Was this translation helpful? Give feedback.
Answered by
heronshoes
Sep 13, 2022
Replies: 1 comment 1 reply
-
Class
This definition is same as Arrow's Table or the dataframe of pandas or R except the Objects. 使っているオブジェクトを別にすると、データフレームの基本構成はArrowのTable、pandasやRのデータフレームと同じです。 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
heronshoes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Class
RedAmber::DataFrame
represents 2D-data. It's alike 2D-Array or Matrix, but the difference is DataFrame has the Vector with same datatype within and columnar labels are exist. So columns and rows are not equal.RedAmber::DataFrame
とは2次元データを表現するクラス。2次元の配列または行列に似ていますが、列方向に必ず同一種類のデータが並ぶことと、
列ラベルが必ずある点が異なります。このため、列と行は等価ではないことに注意が必要です。
RedAmber::Vector
Symbol
(column)
DataFrame#[](key) #=> Vector
Vector#key #=> key
RedAmber::DataFrame
(row)