The internal implementation of R's dataset
Posted
by Yin Zhu
on Stack Overflow
See other posts from Stack Overflow
or by Yin Zhu
Published on 2010-04-17T12:33:58Z
Indexed on
2010/04/17
12:43 UTC
Read the original article
Hit count: 236
r
I am trying to build a data processing program. Currently I use a double matrix to represent the data table, each row is an instance, each column represents a feature. I also have an extra vector as the target value for each instance, it is of double type for regression, it is of integer for classification.
I want to make it more general. I am wondering how what kind of structure R uses to store a dataset, i.e. the internal implementation in R.
© Stack Overflow or respective owner