Being 33SuperWoman
Focus, if not now when? Start broad then narrow down - e.g. programming - R - functions!, form manageable tasks rather than wild unrealistic dreams.
Pages
Blog Archive
Learning R
Beginning at the beginning:
R inferno - nice pdf, probably helps if you are already a programmer.
--------------------------------------------------------------------------------------
Youtube!
apply, effectively removes the need for a double for loop.
tapply expects vectors.
-----------------------
This is wrong!:
mean(2, -100, -4, 3, -230, 5)
This is correct!:
mean(c(2, -100, -4, 3, -230, 5))
7:48 PM | Filed Under | 0 Comments
Post a Comment