8 ms·
Introduction to R Programming
- realPubkey 9y agoI know many people think otherwise, but I hate R for many reasons. Here are some of them: - You can use '=' and '<-' to assign values to variables and both do the same, except in a few edge-cases where you now spend one week finding the error - It confuses and mixes functional programming and oop not only per entity but also between the usage of them. Want to get a value of entity X? use x.getValue(). Want to get a value of entity Y? Use Y.getValue(y). - The ide crashes once an hour and does not detect file-changes which forces you to restart it manually. - People say R is the best and optimized for data-analytics which is simply not true. It's a marketing-lie spread by the creators. There is no data-analytics-task that you cannot do with the same ease in other programming languages. Disclaimer: My big-data-profs enforced me to use R even for tasks where R should not be used.
- Zariff 9y agoSo you prefer Python, I assume?
- realPubkey 9y agoDepends on the problem to solve. For calculation-heavy tasks i prefer python. But these days many use R to create shiny-apps which should be done in javascript instead.
- tomalpha 9y agoI’ve known many quants use both R and python/numpy/pandas for complimentary tasks. The R standard library was generally spoken about in positive terms, but for data massaging and manipulation beyond pure maths/stats analysis a python environment probably offers much more flexibility. Note that I don’t claim expertise in the above, but a bunch of very talented people I’ve worked directly with, and who were very directly incentivized to be productive, used R. Perhaps your profs were trying to help you learn R, including its limitations, when they were setting you tasks?
- realPubkey 9y agoI agree that there are also some good parts with R. But the argument "It's good because many people use it" is the one I heard most often when it comes to discussion about programming languages especially old ones like R and java.
- thousandautumns 9y agoActually for data massaging and manipulation, R is absolutely superior to Python.
- darkhorn 9y agoCan you handle missing data with Python? I don't think so. https://www.statmethods.net/input/missingdata.html https://www.statmethods.net/input/missingdata.html https://stats.idre.ucla.edu/r/faq/how-does-r-handle-missing-values/ https://stats.idre.ucla.edu/r/faq/how-does-r-handle-missing-... https://www.amazon.com/Statistical-Analysis-Missing-Roderick-Little/dp/0471183865 https://www.amazon.com/Statistical-Analysis-Missing-Roderick...
- disgruntledphd2 9y agoThis is a really big deal. In the first edition of Python for data analysis, they suggest using mean imputation. In case you don't know, this will totally break your variance calculations and thus any statistical tests. In the second edition, they suggest doing some interpolation. Meanwhile, in R land there are multiple ways (as always) to do useful multiple imputation which gets you a much more accurate analysis which makes better use of all of the data (mice, Amelia and mi are all good, and somewhat complimentary). That being said, I just thought of using PyTorch and a GAN to do multiple imputation, so maybe it's not impossible to do in Python. There is way, way less support for it though (but of course you could probably build in Numpy). I guess the big difference is that R comes with numpy equivalent (matrix), a pandas equivalent (data.frame and base), and a well-tested, numerically-stable and reference implementation of pretty much all widely used statistical models. Like, I really don't understand why you wouldn't want to look at residuals, even if all you care about is prediction. Your predictions will be much more stable and accurate, and it can often inform you as to how to model things more appropriately. Finally, R's formula interface is a thing of beauty. Honestly, why the hell do I need to generate a model matrix for regression/classification when I can get R to do it for me. I will also say that R is a frustrating, domain-specific, really irritating, wonderful language. But then I'm a crazy person, I wrote a stockfighter client in R.
- ploika 9y agoI've been a heavy R user for about 7 years, and I only slightly disagree with one of your points. (In my opinion) R is best for traditional statistics, as opposed to AI, machine learning, predictive analytics, data science, data analysis or any other variant thereof. If you're more concerned with Chi-squared tests than unit tests, or if you need to teach a mathematician or a biologist how to fit regression models and analyse residuals, goodness-of-fit statistics, p-values etc, then R is the best language for the job. If you need to build a program (as opposed to just do a thing), or if you're more interested in accuracy than inference (as per most machine learning tasks), then Python with sklearn and pandas blows R out of the water.
- czep 9y ago> Python with sklearn and pandas blows R out of the water. For some things yes, but for others the reverse is true. I'm also a heavy R and python user and find the two ecosystems extremely complementary. For building pipelines and web apps, python has an edge. For statistics, graphics, and data management, R is IMO superior. You can do everything in either language, but have to jump through hoops in some cases. Sometimes the best solution is use both! For example, I run an internal web app for A/B testing using django and rpy2. Doing it all in python would have been sub-optimal because dataset management is so much simpler in R. Plots that were easy to do in ggplot2 were impossible to get right in matplotlib. The big drawback to this method is R's single-threaded architecture. Embedding R in a web server process is not easy (ask me!), and won't scale as well as a multi-threaded environment can. All my data exploration and prototyping happens in R. Even basic report scripting can be done better in R than python because of the ease of data management. Consider a typical case of 1) run database query, 2) munge data around to produce a table, and 3) email or save to html. If you can't get exactly what you want from the database in one query and you have to do a lot of munging in step 2, then R is going to be more flexible than python. If I need to merge, aggregate, or recode variables, I would much rather use R. Doing all this with a list of lists "dataset" in python is convoluted at best, and recreating a lot of the functionality that base R gives you.
- v3gas 9y agoDo you not use pandas?
- dcl 9y agoIs there anything out there comparable to ggplot2 for high-quality plots?
- icc97 9y agohttp://ggplot.yhathq.com/ http://ggplot.yhathq.com/
- ianhowson 9y agoI tried a few years ago and found that it didn't implement much and didn't work correctly. Since then I usually use something like rpy2 to run standard ggplot2 from Python. Hopefully it has improved.
- dandermotj 9y agoI'm always a bit disappointed that yhat indiscriminately used 'ggplot' for the python package name. Using a variation on the name would have been more considerate.
- _Wintermute 9y agomatplotlib makes fantastic plots, it's just not a very nice API. Seaborn is quickly becoming my favourite and a bit more similar to ggplot in terms of scope.
- jihadjihad 9y agoLightning (http://lightning-viz.org/ http://lightning-viz.org/) is a pretty cool interactive visualization server, with clients that work across multiple languages/environments. I've used it with R and Python and it's pretty slick.
- j88439h84 9y agoplotnine.readthedocs.io/en/latest/api.html
- roel_v 9y agoI complain about this every time a post on R programming comes up here, but my favorite thing to hate (our of many) about R is that there's no way to find out what the directory of the current script is. Imagine someone would want to use relative paths to their data files so that they could version control their scripts and run them unmodified on different machines! We wouldn't want to enable such abominations now would we!
- phillc73 9y agoI think you need to reference the data files from the working directory, not the directory where the script currently is. The two aren't necessarily the same. The current working directory can be found with getwd() and set with setwd(). If you set the working directory at the beginning of the script, paths to data files should be relative to that location.
- roel_v 9y agoYes but for example when running from within RStudio, or calling from other scripts, the two aren't the same. Calling from other scripts you can do chdir() first of course, but my point is that you can't sensibly rely in your script on cd and script path to be the same.
- geomark 9y agoMaybe I am misunderstanding your question, but isn't that just getwd()?
- roel_v 9y agoNo, that gets you the working directory, which isn't always the same (like, when running from RStudio, getwd() returns the RStudio installation path IIRC).
- perseiden 9y agoif you run scripts non interactively, you could try commandArgs? That should contain the file path. For Rstudio maybe the rstudioapi package has a function like that...
- yread 9y agonice list of R's WTFs. I've recently hit an issue that you access properties of "S4 classes" (what are those? "The S4 object system. R has three object oriented (OO) systems: [[S3]], [[S4]] and [[R5]].") using @ instead of $. I think that the users/library creators are also guilty of why working with R is such a pain. Giving them the option to overload operator was a major mistake. C++ programmers are more often engineers who have more concern for the code reader and even they probably overuse it.
- icc97 9y ago> - The ide crashes once an hour and does not detect file-changes which forces you to restart it manually. There's more than one IDE for R [0], and strictly that's not a problem with R itself, but the people who built the IDE. > - People say R is the best and optimized for data-analytics which is simply not true. It's a marketing-lie spread by the creators. There is no data-analytics-task that you cannot do with the same ease in other programming languages. I think there's very little marketing behind R. It's predominantly a statistics package, but clearly a lot of statisticians are using it for data analysis. So I think it's people that using it for data analysis that talk about it, not bloggers paid to write about it. [0]: https://stackoverflow.com/questions/1097367/what-ides-are-available-for-r-in-linux https://stackoverflow.com/questions/1097367/what-ides-are-av...
- tugash 9y ago- There is also '->' which can be even more confusing (or helpful if you use pipes) - Aren't those methods defined by each package/object? Or you mean '@'? - RStudio (the most used IDE) is one of the reasons that I use R so heavily. Never encountered your problems. I can even git checkout to another branch without problems and the new versions are loaded without problem. - For a quick descriptive analysis or some tests I don't know something easier, compared to SQL or Python. But that's probably only personal preferences and/or knowledge of the language.
- cshenton 9y agoAdd to that: - documentation is all in PDF format - can only install packages from the interpreter - testing libraries not feature complete - weird namespacing - poor test coverage in popular packages - no mature webserver
- ianhowson 9y agoI've attempted to address the documentation issue at https://rdrr.io https://rdrr.io The test coverage issue is what originally prompted me to get involved -- I was evaluating different EM solvers and found a lot of crazy obvious bugs (parameters backwards or totally ignored). There's a lot of room for improvement on the quality front. MRAN and Tidyverse are thankfully making some headway.
- geomark 9y agocan only install packages from the interpreter Not completely sure this is what you mean, but you can certainly run install.packages("package") right in your code, doesn't have to be done interactively. Usually want to first check if it is already installed, like with require("package").
- jrimbault 9y agoI thing cshenton wants to install packages without running the R interpreter. Think of pip install, cpan, cargo...
- kgwgk 9y ago> can only install packages from the interpreter If the package has been downloaded, it can be installed with R CMD INSTALL
- vertere 9y agoThe namespacing drives me nuts but it doesn't get mentioned very often in these kind of threads. How are people just ok with loading everything in the same namespace? You can use ::, but then that can have a ton of overhead.
- baldfat 9y agoEvery language has its warts but R is actually the least disliked language https://stackoverflow.blog/2017/10/31/disliked-programming-languages/ https://stackoverflow.blog/2017/10/31/disliked-programming-l... and http://blog.revolutionanalytics.com/2017/11/r-is-the-least-disliked-programming-language.html http://blog.revolutionanalytics.com/2017/11/r-is-the-least-d... I really enjoy R and the more I learn programming the more I enjoy it. Best thing I ever did was learn the language Racket and How to Design Programs and Hadley Wickham's tidyverse. I moved from Python to R about six years ago. Before that I did most of my work in the command-line. R's rise in popularity has been caused by the libraries in the tidyverse and data.table. The millions of dollars invested into R by many companies and an amazing eco-system > You can use '=' and '<-' to assign values to variables and both do the same, except in a few edge-cases where you now spend one week finding the error Its just R's symantics. It is almost universaly spoken to just use <- for style consistency and edge cases. Use the RStudio shortcut `Alt` and `-`. The reason you spend a week is the reason why it is recommended for all users to just use <-. > It confuses and mixes functional programming and oop not only per entity but also between the usage of them. Want to get a value of entity X? use x.getValue(). Want to get a value of entity Y? Use Y.getValue(y). R comes from S the creators of R were also inspired by Scheme. Personally I learned the language Racket to be a better R programmer and I pretty much live in the Functional side of R. I actually like the fact that they added more functional core to R from S+. http://r.cs.purdue.edu/pub/ecoop12.pdf http://r.cs.purdue.edu/pub/ecoop12.pdf > The ide crashes once an hour and does not detect file-changes which forces you to restart it manually. Then use a different system. R does not equal RStudio. I have never experienced this and I have worked in Linux, Mac and Windows 7 - 10. To me RStudio is the best example of an electron app and the only IDE that I actually use the built in git feature. R Projects and RWorkbooks are the best features of RStudio. > People say R is the best and optimized for data-analytics which is simply not true. It's a marketing-lie spread by the creators. There is no data-analytics-task that you cannot do with the same ease in other programming languages. So R is just as easy to use for data analysis and has best in class statistics? Also I think tidyverse is much easier than any other data analysis system I have ever seen, but I guess that is just my opinion. > It's a marketing-lie spread by the creators. What does Ross Ihaka and Robert Gentleman have to gain for marketing and what lie has they ever said. This falls into conspiracy theory. There is a large community of R users and we like R. There are a ton of
- Yeikoff 9y agoI do not really disagree with you, except for the '<-' bit, just map it to a keyboard shortcut, and move on :). But I would give R a try with the tidyverse, it made me go from hating R to just not caring about it. While libraries are extremely inconsistent, if you want to use cutting edge statistical methdos as a researcher, you pretty much have no other option. Finally, data wrangling is quite well developed in the R evironment. So long story short, after many years of hating R, now I just find it a handy tool to do my work despite it being old, inconsistent and sometimes annoying.
- mannykannot 9y agoI don't get how a keyboard shortcut deals with the '<-' issue, which is the occasional and subtle difference in semantics from '='. Even if you can pick just one for your own work, it doesn't help with other people's code. Tidyverse is new to me, I must check it out.
- baldfat 9y agoRStudio shortcut for <- is alt and -. Also Tidyverse and data.table are the main reason for the sudden explosion of R's popularity. For me I love the piping since I am an old time bash user and | becomes %>% in R is the best thing for the way i think.
- mannykannot 9y agoTyping '<-' is a fairly trivial matter, I think, compared to the semantic issues raised at the start of this thread, and covered in the question and answers below - for example (from the chosen answer): "R's syntax contains many ambiguous cases that have to be resolved one way or another. The parser chooses to resolve the bits of the expression in different orders depending on whether = or <- was used." https://stackoverflow.com/questions/1741820/assignment-operators-in-r-and https://stackoverflow.com/questions/1741820/assignment-opera...
- Yeikoff 9y agoJust use the '<-' all the time, except in function calls. If you can use '<-' with an easy key press you will not be tempted to use '='. And the problem is greatly reduced. But yes, the problem is still there.
- Gatsky 9y agotldr: you don't like R. I am no wiser than before I read this comment. So what do you use instead? Regarding your 3rd point, I have never seen or heard anyone say R is the best, and I use it almost daily.
- vijucat 9y ago> People say R is the best and optimized for data-analytics which is simply not true. It's a marketing-lie spread by the creators. There is no data-analytics-task that you cannot do with the same ease in other programming languages. Really? Maybe you worked with R before data.table, dplyr, and the tidyverse packages? I'm not that familiar with pandas in Python, but there is an incredible amount of productivity to be gained from knowing your way around a set of just around 5 packages in R that I never had when working with C++, Java, Perl, or Ruby. Also, it could just be me, but I overcome the = and <- confusion by simply never using =.
- czep 9y agoI feel your pain! It took me a long time to get used to R. The only reason I tolerate it is I used SAS before that, so my point of comparison is an even more obtuse programming framework! Some general advice should you want to work with R some more: - For assignment, always use '<-'. Read it as "set to". For example, "x <- runif(10)" means "set x to a vector of 10 uniform random numbers". When passing arguments in function calls, use '='. - If the IDE gives you problems, try using the command line. R Studio or the R GUI app are not necessary. Simply type 'R' in a shell and you have an interactive read-line environment. Use the shell for exploratory work, then write code in your favorite editor and copy/paste after developing a series of commands you want to run. - Use base R as much as possible, don't install a new package just for one function that you could do with base R functions, even if it's not elegant. Package bloat is one reason for inconsistencies in APIs. Some package developers will make you do x.getValue() and others getValue(x). But remember these are 3rd party packages. You can do a lot using just base R and a few select packages that are well respected (gglot2, dplyr, Hmisc, reshape).
- bllguo 9y agoThat's funny, I absolutely never use '<-'. Mostly because it's 2 characters, and because it's inconsistent with most languages. Haven't ever run into any issues because of '='. I like your base R point, although like you say, some packages are simply essential.
- thousandautumns 9y agoI don't know why you think its a marketing lie. I think R is hands down the best language for data analysis, and nothing else really comes close.
- GordonS 9y agoMaybe you could elaborate with why you feel this way?
- ocschwar 9y agoI do R code QA for a living now. And I can see why some people like R. They are end users for whom the language was explicitly designed, so they like the ergonomics (to use the term Rustaceans are popularizing.) The thing is, like Perl and Latex and other products you could think of, R was initially written by people with a good idea of the end uses and how to enable those end uses, but not a good idea on how to reconcile those ergonomics with the need for a clean parseable syntax. So if you make too extensive a reliance on R, you wind up having to hire someone like me.
- hutzlibu 9y ago"You can use '=' and '<-' to assign values to variables and both do the same, except in a few edge-cases where you now spend one week finding the error" Can you tell us a bit about those edge-cases which can lead to hard finding bugs?
- gregman1 9y agoThere's no reason to use R unless you are unable to learn.
- pmyteh 9y agoThat's silly. If you're doing research using new statistical methods, they're almost certainly available on R first. And ggplot2 remains the best plotting library I've ever seen.
- icc97 9y agoIf you're unable to learn, you're basically not even human. Perhaps you missed of a word at the end of the sentence? (Not that this makes it much better, but at least comprehensible) ... unable to learn Python?
- jeroenjanssens 9y agoThe book "R for Data Science" by Garrett Grolemund and Hadley Wickham (O'Reilly, 2017) [1] provides a comprehensive introduction to modern R and a set of packages known as the tidyverse. Highly recommended. [1] http://r4ds.had.co.nz/ http://r4ds.had.co.nz/
- a_bonobo 9y agoI second this - the tidyverse packages make R feel like it's supposed to feel like, tables make sense, string manipulation makes sense, it's all grown out of one consistent approach, kind of the opposite of base R. Just a shame that R's approach to namespace is so bad that importing tidyverse leads to a few name-clashes with bioconductor...
- cecilialee 9y agoYes. This is the book that I referenced to!
- icc97 9y agoHadley Wickham also has an Advanced R book [0] which has some of the functional programming concepts that you can use in R [0]: http://adv-r.had.co.nz/ http://adv-r.had.co.nz/
- jeroenjanssens 9y agoI can't believe you start counting at 0 ;)
- icc97 9y agoIt's a common theme on HN, I copied it from other comments when I first started commenting here
- nkurz 9y agoIt's also a common theme of those complaining about R that it starts with 1 rather than 0 like a "real" programming language: https://stackoverflow.com/questions/3135325/why-do-vector-indices-in-r-start-with-1-instead-of-0 https://stackoverflow.com/questions/3135325/why-do-vector-in.... Now that you've outed yourself as an insidious traitor, Hadley will be by shortly to take back your copy of the book. At least, that's how I read the smiley.
- yters 9y agoR can be an annoying programming language, but for some reason I've found it easier to use for prototyping than even Python. I think it's because I can sloppily copy and paste between notepad and repl without much issue, whereas in Python I have to be concerned about the whitespace and things are a bit more verbose. I also get more out of the graphing capability of R, but that's probably because I don't understand Python's graphing well enough. Be that as it may, R just seems to have what I need to get things done as sloppily as I need. My workflow tends to be a combination of Python or Java spitting out numbers, and then using R to analyze and graph those numbers, all glued together with Bash scripts.
- tekkk 9y agoMan I dislike R for its syntax. It does a terrible disservice to people who start coding in R and then think that they "know programming" while they have missed most of the basic programming paradigms any "normal" programming language has. I think R has a lot of similar ideology as PHP and well everyone has their own opinion about PHP. Also I found the tutorial seriously lacking I mean no data.frames, matrices, vectors, tables or factors? How to iterate over data.frame might be the biggest thing a beginner needs to know before shooting themselves in the head. apply, lapply, sapply or vapply - which one do I need? Well IMO apply is the best one to start with as it's the basis of them all. sapply is almost the same but it just transforms the result into a vector or matrix.
- yummy 9y agoAgree. It's amazing how such an ugly and inconsistent language can have so many great packages.
- cecilialee 9y agoThe inconsistency is something that's quite annoying though.
- lottin 9y agoapply is NOT the basis for the other *apply functions, in fact apply it's the exception. There's apply and there's lapply. The rest are variations of lapply. As for people mistakenly believing that they "know programming" I don't think this has anything to do with R's syntax. R is a programming language but it's also a system for interactive data analysis thus the syntax had to be adapted to that end.
- othello 9y agoOne really underappreciated aspect of R is that it's a lisp at heart. This enables the user (and enterprising package writer) to build really clean abstractions for the task at hand. The tidyverse suite of Hadley Wickham is a great example of this, notably with the pipe operator %>% (similar to |> in F#) which is not part of the base language and yet could be very easily implemented. Julia's macros probably enables the same type of implementation, but I don't see how one would achieve it as easily in Python for example. Non-standard evaluation is another example of R's lispiness in action [0]. Also, consider how easy it is to walk R's S-exp. Expressions in R can only be one of four things: an atomic value, a name, a call or a pairlist. Wickham's Advanced R has a great intro on this [1]. I believe Wickham's amazing work with tidyverse (which really changes the way you code in R) is just the beginning of a rediscovery of R's inner lisp power, a kind of "R: the good parts" moment. [0] http://adv-r.had.co.nz/Computing-on-the-language.html http://adv-r.had.co.nz/Computing-on-the-language.html [1] http://adv-r.had.co.nz/Expressions.html http://adv-r.had.co.nz/Expressions.html
- nabla9 9y agoRos Ihaka actually suggested rewriting R in Common Lisp. https://www.stat.auckland.ac.nz/~ihaka/downloads/Compstat-2008.pdf https://www.stat.auckland.ac.nz/~ihaka/downloads/Compstat-20...
- baldfat 9y agoBest thing I ever learned about R was it's scheme influence. I ended up learning Racket and it changed everything I have ever coded in R. Actually I have made Racket my main general purpose language of choice after going through "How to Design Programs."
- ropeladder 9y agoAnyone with a programming background getting into R should absolutely go read _Advanced R_. I've been using R off and on for a while now but Advanced R was a real revelation. All of R's weird behavior finally made sense. Edit: Also there is a 2nd edition in the works: (confusingly hosted at the same subdomain of a different version of Hadley Wickham's website. https://adv-r.hadley.nz/ https://adv-r.hadley.nz/
- amrrs 9y agoI have seen HN crowd hating R very similar to hating js. While I'm not getting into those details, I'd like to list a few reasons why I like R: - RStudio is simply great. I know Python has got Jupyter notebook but RStudio makes a good IDE for anyone (even beginners). - Python is great because it's easier for beginners to start doing magick without getting frustrated hence a good beginners language and it is more appropriate for R because anyone who wants to begin with Data Analytics, R is a lot easier - without trying to figure out how to install a new package, load a new package, make a plot or anything of that matter. Hence the fall out rate would be less. - Tidyverse. Without denial, it's a better Universe than Marvel's cinematic universe. Not a single day in my job goes without using dplyr. - While I've quoted tidyverse in general, ggplot2 - embracing the grammar of graphics has set a very nice standard for visualization libraries which matplotlib (the goto library of Python doesn't offer much) - Pandas is nothing but a library built on Numpy to offer R like data wrangling functions hence I'd like to consider dplyr and R's inbuilt data manipulation functions superior. There is no doubt that Python has its own advantages with single library scikit-learn and webservices, R is no way to be hated. Even millenial companies have found interest in R https://medium.com/airbnb-engineering/using-r-packages-and-education-to-scale-data-science-at-airbnb-906faa58e12d https://medium.com/airbnb-engineering/using-r-packages-and-e... Edit: Missed RShiny to simply create a web app (unlike in Python starting a Flask server and then writing stuff on top of it)
- cecilialee 9y agoYes! These are the exact things why I love R! Although I love Python too.
- sus_007 9y agoIs there any difference in using Jupyter Notebook (via R Kernel) and R-Studio specifically for R programming ? I already have Jupyter Notebook installed and I wanted to learn R, so do I need to install R-studio separately?
- minimaxir 9y agoR Studio allows you to use R Notebooks, which have a number of advantages over Jupyter (I wrote a blog post on exactly this earlier this year: http://minimaxir.com/2017/06/r-notebooks/ http://minimaxir.com/2017/06/r-notebooks/)
- kqr 9y agoI have started really enjoying R (with tidyverse) because it allows me to present complicated topics in a very simple manner. I can easily embed short R snippets and LaTeX equations in an Emacs Org mode document, and then export it as a very nice-looking easy-to-read HTML or PDF document with basically no effort other than coming up with the text itself. It is incredibly liberating.
- arca_vorago 9y agoI'm working on my data science degree, and this is my method as well, though I'll admit I don't know much R yet so I'm using it very simply. I'll usually have a mix of python, R, octave, etc snippets. I really love emacs org-mode.
- JepZ 9y agoA few weeks ago I had to do some data transformation (just a few thousand lines of data). Because I have some history with Excel I startet LibreOffice and wrote some formulas. After a few days I reached the point when LibreOffice required one and a half hours to recalculate the formulas. That was the moment when I asked a friend of my who has some R experience to help me with the basics (yes the syntax is kinda weird at the beginning). After 4 hours of learning by doing we had the same result as what I had reached in a few days of work with LibreOffice and it calculated everything in about 17 seconds. Yes, this time I knew exactly what I wanted and R can do much more efficient transformations than you could ever do with a spreadsheet calculator. Nevertheless I was quite happy with the result. As I am normally use to code with vim and tmux I use R just like a (bash)-script with the following shebang: #!/usr/bin/env Rscript That way I can throw it into a watch myScript.R while I write it in vim in a different tmux pane. That might have some disadvantages compared to RStudio (e.g. can't view graphics in a terminal), but as it fits very nicely into my normal workflow and performs very well, I am very happy with that solution.
- dm319 9y agoHave you tried Nvim-R? I love it. You can send a line to the R console using <space>. I've assigned loads of keyboard shortcuts beginning with your local leader that will do things like str(), levels(), head(), tail(), sum() on the object under the cursor. It works fine with plotting figures, and I think you can set it up with tmux, though I use vim's buffers. Haven't seen any disadvantages to compared to Rstudio yet. I guess you could even do :!git add ... from vim. [1] https://github.com/jalvesaq/Nvim-R https://github.com/jalvesaq/Nvim-R
- disgruntledphd2 9y agoJust to settle the Vim vs Emacs debate in the context of R, I refer you to R FAQ 6.2: https://cran.r-project.org/doc/FAQ/R-FAQ.html#Should-I-run-R-from-within-Emacs_003f https://cran.r-project.org/doc/FAQ/R-FAQ.html#Should-I-run-R...
- catnaroek 9y ago> For someone like me, who has only had some programming experience in Python, the syntax of R feels alienating initially. However, I believe it’s just a matter of time before adapting to the unique logicality of a new language. I preferred R to Python right from the start. However, R is anything but logical, and its syntax is the least of its problems. > And indeed, the grammar of R flows more naturally to me after having to practice for a while, and I began to grasp its kind of remarkable beauty, that has captivated the heart of countless statisticians throughout the years. Wow, statisticians care about beauty? This is a shocking scientific discovery! (In the social sciences, but don't let this detract from your achievement.) What data do you use to support your theory?
- tomerbd 9y agoI use R (or want to use it) whenever I find myself using excel or google-spreadsheet. If I was more fluent in R I would use it many more times. I found that using it instead of standard spreadsheet was much more robust. Spreadsheet have their role, however R is an amazing tool to have in your programming toolset.
- jejones3141 9y agoTo save others some of the head-banging sessions I've had with R: R has an integer division operator, %/%. R gives you the ability to define your own infix operators, as long as you give them symbols that start and end with %. Here's the kicker--all such operators have a higher precedence than multiply and divide, which can lead to unexpected results. R as a programming language can be frustrating. It has scalar values; you just can't store one in a variable (it becomes a vector of length one). Some functions and operators will work with vectors of arbitrary length... but some require a vector of length one. (Speaking of which, binary operations on vectors are done by adding corresponding elements, BUT if one operand runs out first, it will start picking them off from the beginning again, with a warning if the length of the longer one isn't a multiple of the length of the shorter one. This may be surprising.) The wonky list notation takes time to get used to: foo[1] gives you a sublist; chances are you want foo[[1]]. Deciding which of the *apply() functions you want can be a pain. What passes for lambda expressions in R is clunky. m:n gives you a vector of m, m + 1, ..., n... unless M > n, in which case it assumes you want m, m - 1, ..., n, so 1:0 won't give you an empty vector. This makes for clumsy special case code.
- kqr 9y ago> What passes for lambda expressions in R is clunky. Is that really the case, though? It seems like `function (args) body` is about as simple as it gets, and just as simple as in many other languages.
- makeset 9y agoUse seq_len(n) instead of 1:n to get an empty vector for n=0. There's also seq_along(x) instead of 1:length(x).
- jerianasmith 9y agoR is free programming - see the R site above for the terms of utilization. It keeps running on a wide assortment of stages including UNIX, Windows and MacOS.
- minimaxir 9y agoAs the other comments on this submission imply, if you’re learning R from scratch, start with tidyverse. You can use base R, but when people talk about how much they hate R, it’s usually because of base R, not tools like dplyr/ggplot2. (I had learned R and used it in college, and nearly quit R entirely until dplyr was released) And over the last summer, I started using forcats/lubridate, and I am kicking myself for wasting my time not using them sooner and using ugly hacks for the appropriate functionality instead.
- doggydogs94 9y agoYAFL, yet another “fine” language.
- abakus 9y agoThe biggest problem with R: it is too slow.
- closed 9y agoIt's clear there are a lot of strong opinions about R! One kind of obscure problem I run in to is R's embrace of a global namespace. Package developers sometimes assume people are using this namespace, and access it via the globalEnv() function. This means that to use the package anywhere else, you basically have to patch their code. (in contrast, I don't even think about problems like this occurring in python packages. Worst case scenario, can just use a subprocess )
- uptownfunk 9y agoR is great, haters gonna hate, but when you want to prototype a model, nothing flows like R + tidyverse + RStudio.
- neya 9y agoI'll probably get downvoted for this, but let me tell you - Please don't use R in production. Please don't use R for any serious work. Over the years, I've come to learn to appreciate the fact that languages are just tools. You simply use the right tool for the job. If you let your personal bias, love/hate get in the way, it will cause you a lot of pain in the long run. In the same token, R is one of the most fucked up languages to work with if you use it simply because you assume it's good for all analytics-related projects. It's not. In one of my previous companies, we had a hipster, always used everything that's on trend. Against all advice, he decided to use R for many of our internal and client facing projects. For what would have taken a week if Rails were used, he'd write everything in R Shiny. Yes, he used a statistical programming language to write a web application and serve APIs(!). Performance was terrible. There were lot of break downs. Development prolonged, even his own team members lost morale. I unfortunately had the ill luck of having to maintain some of his codebases and those days were the worst in my life. Worse yet, he didn't have a formal software engineering background, so he loved the idea that you are able to code everything inside of this blackbox called R Studio. Fuck tests, there were no tests written because he didn't understand the importance of tests. The projects he worked on lasted for nearly 1.5 years without completion. Almost every project had an instance on the cloud running an R server and it also costed a LOT simply because it was eating a lot of memory. Even our Ruby projects didn't consume as much. Eventually most of the projects failed, we lost lot of customers. Many team members quit. All because of one singular mistake of choosing a language that's not right for the job. Eventually, one of our competitors came up with a working prototype in production using Python, Flask and with much better analytic capability at scale in less than 3 months. Python can do a LOT that R can do and cannot do and the code is much, much easier to read. For example, string concatination: Python: hello + world R: paste("hello","world",sep="") If you're really interested in data science and/or analytics, I sincerely urge you to start with Python and Pandas together rather than R. It is much, much performant, easier to reason, and much, much easier to maintain and scale. Please consider this as heartfelt advice based on my mistakes rather than a rant. Thank you.
- scottmmjackson 9y agoBut if you know R, you can change the behavior of operators. > oldPlus <- `+` > `+` <- function(e1, e2) { + if (is.character(e1) && is.character(e2)) + paste(e1,e2,sep="") + else + oldPlus(e1,e2) + } > "hello" + "world" [1] "helloworld"