Skip to content
Prev 398061 / 398502 Next

About size of data frames

On 2025-08-14 7:27 a.m., Stefano Sofia via R-help wrote:
It really depends on what computations you're doing.  As a general rule, 
column operations are faster than row operations.  (Also as a general 
rule, arrays are faster than dataframes, but are much more limited in 
what they can hold:  all entries must be the same type, which probably 
won't work for your data.)

So I'd guess your 3 column solution would likely be best.

Duncan Murdoch