You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 20, 2024. It is now read-only.
R is not suitable for manipulation of chains of pointers thus it is not convenient for recursive programing of tree structures. This is a new lesson for us. To keep the package writen entirely in R we were forced to copy lists many times. It works for small examples but with big data sets (10-20 000 columns) this method consumes lot of cpu-time.
An alternative, although less elegant, method will be proposed in this issue
R is not suitable for manipulation of chains of pointers thus it is not convenient for recursive programing of tree structures. This is a new lesson for us. To keep the package writen entirely in R we were forced to copy lists many times. It works for small examples but with big data sets (10-20 000 columns) this method consumes lot of cpu-time.
An alternative, although less elegant, method will be proposed in this issue