R statistical language on Visual studio [closed] - r

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 am a newbie in Machine learning and Statistics. As I used opencv for my project(which I used in visual studio) and wanted to perform basis persuit operation, which is difficult to perform. So, I searched and took opinions of expert to get efficient programming library based on c++(I am from electronics background and c++ knowledge is more than sufficient).I have got information that you can build R programs on eclipse>
Can you please suggest me some references for running R on visual studio??
Does Rcpp runs on Visual studio?

Here is answer with source:
2.9 Can I use Rcpp with Visual Studio ?
Not a chance.
And that is not because we are meanies but because R and Visual Studio simply
do not get along. As Rcpp is all about
extending R with C++ interfaces, we are bound by the available toolchain.
And R simply does not compile with Visual Studio.
Source: http://cran.r-project.org/web/packages/Rcpp/vignettes/Rcpp-FAQ.pdf

Related

Is there any easy way to make a desktop app in R that doesn't require installing R [closed]

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 5 years ago.
Improve this question
I wrote a simple R program and want to share it with my office. Most people in my office are not familiar with R and I imagine it could be kind of confusing for them to install R and all the required packages.
Is there an easy way I can share an R script that can take user inputs & share output that doesn't require R installation on the user's end? I'm thinking something like Shiny, but for desktop use.
Your users can run R in an R jupyter notebook that you have set up in advance on some server. Then it's not a "desktop app" per se but it's going to look like it is running in their local web browser like Firefox or Chrome etc. Sharing R code you wrote will work excellently this way.

Any free static code analyzer for PL/SQL [closed]

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 6 years ago.
Improve this question
We are looking for a free tool that we can use for PL/SQL static code analysis. The only tool we could find was Toad for Oracle but it's a commercial tool. Before we invest on it, wanted to check for any alternatives that are free.
Toad for Oracle DOES have a free trial edition, if you want to try out before you purchase. But you need to get the Professional Edition for you to get CodeXpert which is the PL/SQL scanner. It was pretty decent and well integrated with Toad IDE.
If you are looking for a completely free edition you can try out SonarCube. But not sure if that uses CodeExpert underneath.
There's another free tool called Manduka which is also a Pl/SQL scanner but not yet integrated with any IDE.
I think you can check out SonarQube which has support for PL/SQL. But not sure whether the PL/SQL plugin for Sonar is free.

calling SAS command statements from R [closed]

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 was thinking of running SAS commands in R since the SAS version I have is incompatible with my windows. The windows I had was windows 7 and decided to upgrade to 8.1,
Is it possible?
No. In your situation it isn't possible. If you had a working installation of SAS you might be able to connect them through system calls but if SAS isn't working then you can't just run SAS code from within R.
You'll either need to get SAS working on your computer or just run R code.

Integrating legacy statistical packages in a R based workflow [closed]

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 am planning to run Monte Carlo simulations in an R environment (Windows 7). However I need to use old legacy statistical packages that are no longer executable in Windows 7, although I am aware that there are emulation solutions (Like VMWare) available. In addition I need to integrate these packages in a seamless workflow so that simulated data from R functions is pushed on the old package, processed, and pulled back for further analysis in R again.
I am aware that there are open source workflow tools (such as KNIME) that can integrate different software packages, but my internet searches tend to be swamped with references to WorkFlow Management software business applications that are irrelevant to me.
Is KNIME Analytics a suitable solution given my legacy software problem, and if not what workflow tool would you suggest?
Kind regards,
Giulio Flore

Go network programming libs [closed]

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 5 years ago.
Improve this question
I've decided to rewrite most of my distributed server programs in Go to replace the existing c# based ones.
Can someone point me to a Go TCP libs or a Go general network programming lib.
Thanks
Edi: ... and how do i complile this code is visual stuido 2008? Thanks
Here's the official API docs for the net package.
Regarding how to compile: See the installation guide. As of yet there doesn't seem to be an obvious way to compile in VS:
The Go tool chain is written in C. To
build it, you need to have GCC, the
standard C libraries, the parser
generator Bison, and the text editor
ed installed.
So in order to develop on Windows, the easiest route would be to use cygwin.
Depending on the needs of your distributed software, you may also want to check out the rpc package which makes it quite easy to register an object's public methods and call them remotely.

Resources