Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
Few days ago, I installed c++ mingw compiler and removed it yesterday.
Even before using mingw compiler to dabble with eclipse ide, I had R Studio installed with the default CRAN version of R. After deleting mingw folder from my computer, I see this kind of wierd mingw name in the default text shown by the console window in R Studio.
Kind of annoying to me!! I dont want to deal with mingw and want that name to disappear completely...
This is not affecting the overall functionality...Not sure if it will affect int he future..... but wondering why the "mingw" text is showing up in the "Platform" information....
Is there a way to restore normalcy ?annoying mingw
Good news... you've already achieved normalcy!
R.version$platform
# [1] "x86_64-w64-mingw32"
What you are seeing is the canonical name of the platform under which R was compiled according to the help entry... ?.Platform
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I need to install Rtools in order to work with keras package. I've successfully downloaded Rtools from https://cran.r-project.org/bin/windows/Rtools/, but then I need to "put it on a path", as it is stated here on this website. I don't understand what is written here about doing that. Could you,please, explain it to me in a simple way and, desirably, with an example?
Thank you for your help.
The path is the list of all directories the operating system is going to look to find a program when you call it.
An alternative instead of modifying the system path, is to create a file which tells R where to find RTools.
As stated in the installation doc, just open an R console and execute once:
writeLines('PATH="${RTOOLS40_HOME}\\usr\\bin;${PATH}"', con = "~/.Renviron")
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 6 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Improve this question
I want to run an R script on a computer which doesn't have the R software installed on it. Is it possible to do this in any way?
If you have internet and a browser on the machine without R go to:
http://r-fiddle.org
or
http://pbil.univ-lyon1.fr/Rweb/
and paste the source of the R file into it.
Alternately, note that R is free and has an automated installer so it's pretty easy to install R on a new machine. Google for
download R windows
Download it. Run the downloaded executable and press enter for each question.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Here is my Ubuntu version
Distributor ID: Ubuntu
Description: Ubuntu 12.10
Release: 12.10
Codename: quantal
I need the most up-to-date list for /etc/apt/sources.list as I had previously changed a few things around. Any idea where I can find this?
For example, right now I cannot even install nginx (apt-get install ngnix) as my distribution cannot even seem to find it!
The problem is most likely related to the fact that Ubuntu Quantal reached end of life on May 16 2014 and is no longer supported (http://fridge.ubuntu.com/2014/05/01/ubuntu-12-10-quantal-quetzal-reaches-end-of-life-on-may-16-2014/)
It is recommended that you upgrade of course since you will not receive any more updates. However, if you want to keep using an old version of Ubuntu, you need to change your sources.list file to point to archived repositories. You will not receive upgrades, but you will be able to install software. The process is explained here:
https://help.ubuntu.com/community/EOLUpgrades
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I am totally new for installing outer tools or libraries into R.
I want to use gdata tool in R, which is outer tools so needed to install.
From this page,
http://cran.r-project.org/web/packages/gdata/index.html
I downloaded windows binaries(because my PC is 64bit windows)
1)but I don't know how to install this in my PC after this.
inside gdata folder there are so many files but none of these are installation file! What should I do??? Nowhere can I find installation guide...
2)And how to call functions inside this file on R.
Could you please help me? Many Thanks!
install.packages("gdata")
require(gdata)
If that gives you any trouble try:
install.packages("master.tar.gz", type = "source", repos = NULL)
where "master.tar.gz" is the file you downloaded. Specify the path with double (escaped) backslashes if it is not in your working directory.
I wrote "Master" to correspond to source downloaded from GitHub (i.e. the "Master branch") but the name from CRAN will be different.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I'm trying to configure aptana to help me code in netlogo, I can't seem to figure out how it's done. Is it a plugin or something?
edit: so bascially how can I import a language into aptana studio?
http://ccl.northwestern.edu/netlogo/resources.shtml has an "Editor support" section with plugins for some different programmers' editors including Emacs and Vi. Aptana isn't listed, so that means that so far as we (the developers of NetLogo) know, nobody has done the necessary work to make NetLogo be one of the languages that Aptana supports.
I have no firsthand experience with Aptana, but it seems to be targeted specifically for building web applications. That isn't what NetLogo is for, so it's not surprising that Aptana/NetLogo integration doesn't exist.