Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm trying to get started using some statistical analysis with the limma package that runs out of R. Any one know a good tutorial?
The limma web-page has plenty of material. I've also written a tutorial paper that analyses yeast microarray data using (amongst other things) limma.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Could you recommend to me library (or tool) for NLP in R for Polish language?
You could try the wrapper spacyr: https://cran.r-project.org/web/packages/spacyr/vignettes/using_spacyr.html
SpaCy has a wide language coverage and there are already trained models for Polish: https://spacy.io/models/pl
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am a beginner in R. I have recently realized that I can reduce my code more leanly / elegantly by using Functional Programming.
As an Economist I am a little lost in how and where to start studying about Functional Programming in R.
Could you suggest books / courses or any references to improve my scripts in R?
Thank you!
A good place to start:
https://adv-r.hadley.nz/
https://www.r-bloggers.com/functional-programming-in-r/
https://www.mango-solutions.com/to-purrr-or-not-to-purrr/
More concentrated on functional programming:
https://www.amazon.com/Functional-Programming-Advanced-Statistical-Analysis/dp/148422745X
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to ask if someone knows a good source (e.g. book, blog, notes, slides, ...) which explains formula, terms and call in R on an advanced level for programming. I am struggling with them and have not yet found a comprehensive source.
Thanks and best,
Martin
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to get Facebook ad spend data into R for analysis. This is similar to data about adspend that is available from Google Analytics (metric ga:adCost).
I read about the package Rfacebook but I dont think it supports this data retrieval.
Is there any other package or way to get this data into R? I am not familiar with Java etc, so it would be a pity if this can't be done in R.
Thanks
this seems to be what you are working for:
https://github.com/cardcorp/fbRads
slides and examples are here:
https://drive.google.com/file/d/0ByjOYacj5XqBWHlwWUdJcjdrSDQ/view
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Can someone help me with some tutorials on how I can learn to formulate optimization problems in R?
I am mainly looking for 2d optimization problems. Until now I have found a lot of info on optimization algorithms, however almost nothing on how to implement them with 1 or 2 examples.
Well, the R task guides are always a good place to start.
In addition, there was a recent article on the optimx package in R
Also, if you load up some packages listed in the task guide, then you will probably find some useful vignettes (I've learned an awful lot of stats from those vignettes over the years).