←back to thread

151 points todsacerdoti | 1 comments | | HN request time: 0.214s | source
Show context
ngriffiths ◴[] No.42193839[source]
Makes me curious what state R was at the time, or whatever else could've been useful for deep learning, and the benefits of a new language vs adapting something that exists. Seems like it was a big investment
replies(2): >>42193979 #>>42194909 #
_Wintermute ◴[] No.42194909[source]
In my opinion R should thought of as an unbeatable graphical calculator, but an awful programming language.
replies(4): >>42197177 #>>42198754 #>>42205140 #>>42228955 #
1. perrygeo ◴[] No.42205140[source]
That's how I view it. I still use R for plotting and quick stats analyses but it is painful to do any real work.

I recommend the article "Evaluating the Design of the R Language" [1] - it reads like a horror story. The memory usage and performance is abysmal, the OO features are a mess, and the semantics are very weird ("best effort semantics" is about as predictable as it sounds!). The lexical scoping is based on Scheme but has so many weird edge cases. It's a dumpster fire of a language, but it somehow works for its intended purpose.

[1] http://janvitek.org/pubs/ecoop12.pdf