Arthur Besse@lemmy.ml to Programmer Humor@lemmy.ml · 6 days agoit's how the basic linear algebra subprograms are implementedlemmy.mlimagemessage-square26fedilinkarrow-up1400arrow-down15file-text
arrow-up1395arrow-down1imageit's how the basic linear algebra subprograms are implementedlemmy.mlArthur Besse@lemmy.ml to Programmer Humor@lemmy.ml · 6 days agomessage-square26fedilinkfile-text
References: https://en.wikipedia.org/wiki/OpenBLAS http://modernhumorist.com/mh/0004/propaganda/mp3.php https://knowyourmeme.com/memes/when-you-ride-alone-you-ride-with-hitler https://everything2.com/title/When+you+pirate+MP3s%252C+you%2527re+downloading+communism
minus-squareChaislinkfedilinkarrow-up1·2 days agoBecause R is incredibly clunky. I’ve worked with both and never got the hang of R.
minus-squareHStone32@lemmy.worldlinkfedilinkarrow-up1·edit-22 days agoimport numpy as np temp = np.array([22, 21, 25, 23]) sd_temp = np.std(temp, ddof=1) print(sd_temp) Vs temp <- c(22, 21, 25, 23) sd(temp) How in the world is R more clunky than python? Edit: and I didn’t even mention how python likes to break unrelated software packages whenever I’m forced to use it.
Because R is incredibly clunky. I’ve worked with both and never got the hang of R.
import numpy as np temp = np.array([22, 21, 25, 23]) sd_temp = np.std(temp, ddof=1) print(sd_temp)
Vs
temp <- c(22, 21, 25, 23) sd(temp)
How in the world is R more clunky than python?
Edit: and I didn’t even mention how python likes to break unrelated software packages whenever I’m forced to use it.