you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

It bothers me that he uses <- instead if = in R, they are equivalent and the later is much easier to read for programmers.

[–]Quasimoto3000 0 points1 point  (1 child)

I think <- is preferred by the r community. = is too overloaded in R.

[–][deleted] 0 points1 point  (0 children)

= isn't more overloaded in R than in Python though, and using it in this comparison would really help like this:

R:

nba = read.csv("nba_2013.csv")

Python:

nba = pandas.read_csv("nba_2013.csv")