Closed fmorgante closed 1 year ago
Hi Florian, I need to do colSums(X^2) where X is an FBM object. Do you have any suggestion on how to do that using bigstatsr functions? I don't seem to find an efficient way.
colSums(X^2)
Hi, I can see 3 ways:
big_apply()
big_colstats()
The third point is a great trick I did not think about. Thank you!
Hi Florian, I need to do
colSums(X^2)
where X is an FBM object. Do you have any suggestion on how to do that using bigstatsr functions? I don't seem to find an efficient way.