WackyTabbacy42069@reddthat.com to Asklemmy@lemmy.ml · 1 year agoWhat's your favorite programming language and what about it do you like?message-squaremessage-square119fedilinkarrow-up10arrow-down10
arrow-up10arrow-down1message-squareWhat's your favorite programming language and what about it do you like?WackyTabbacy42069@reddthat.com to Asklemmy@lemmy.ml · 1 year agomessage-square119fedilink
minus-squareBye@lemmy.worldlinkfedilinkarrow-up0·1 year agoI like R because most everything is vectorized out of the box, and you can subset multiple ways. You can do stuff like a = c(1,2,3,4) a - 1 # 0,1,2,3 a < 3 # T,T,F,F a + a # 2,4,6,8 a[a < 3] # 1,2 Also map (“apply” functions in R) is implemented very intuitively, and R discourages you from doing anything object oriented.
I like R because most everything is vectorized out of the box, and you can subset multiple ways. You can do stuff like
Also map (“apply” functions in R) is implemented very intuitively, and R discourages you from doing anything object oriented.
Also Shiny is so cool.