similar to: R licence

Displaying 20 results from an estimated 7000 matches similar to: "R licence"

2015 Apr 17
2
Integración de R y C#
Hola a todos. Se me está plantendo la posibilidad de empezar a aprender C# para hacer algunos programillas (nada grande). El tema es que el otro día en un mail de esta misma lista alguien (lo siento, no recuerdo quien) puso un link a un post en el que se hablaba de la integración entre R y C#. Por supuesto para llegar a poder hacer esto primero tengo que entender las bases de .NET y C#, pero me
2012 May 02
1
returning value from source() in R .Net
Hello I would like to source an R script from within a C# .Net application equivalent to: source("my_r_code.r") I can get this to run but am not sure how to retrieve R objects defined with script my_r_code.r at runtime. For example, if "my_r_code.r" contains #-- contents of my_r_code.r--------------------- x <- 1:10 xmean <- mean(x)
2008 Apr 03
4
C# SIP API to Comiunicate with Asterisk
Do anyone has an idea about an open source SIP API written in C# that can communicate with Asterisk, to call out? Regards, Sanjay.
2012 May 22
1
How to evaluate R things from Visual Studio?
Hello all, I’m new here and this is actually my very first post. My name is Giannis and I am an undergraduate student. I am programming in Microsoft’s Visual Studio 2010 (VB.NET mostly) and I want to create a program for the research group I am in. I merely want to evaluate actions and use simple statistical things such as ks test (Kolmogorov-Smirnov), and some plots. The reason I need to call R
2011 Oct 23
1
R Data Frame to C# DataGridView - R.NET
This is more of a C# question, but it has to do with the conversion of a data frame using R.NET into an appropriate format to display on a C# DataGridView. My code is as follows (focusing on the button_Click) /private void button_displayDF_Click(object sender, EventArgs e) { REngine engine = REngine.GetInstanceFromID("RDotNet"); DataTable table = new
2008 Dec 03
1
File permissions
Greetings, I'm running into a file permission issue. I have a share called "data" configured simply as: [data] read only = no path = /mnt/data For test purposes, I have a file called "t.jpg". -rwx------ 1 bek bek 63793 2008-12-03 11:17 t.jpg I'm logged in as "matt" on my local computer. If I try to open this file, I can't
2009 Jan 14
2
Update link for SuSE packages on networkupstools.org?
Arjen, all I don't know if there is some prohibition against it, but the packages.html link for SuSE RPMs should be changed from: http://software.opensuse.org/ To something useful that will get the site visitors to the actual rpms. For the packages that were part of the distribution: http://download.opensuse.org/distribution/ or for updated packages on build service:
2017 Dec 25
2
R CMD check warning about compiler warning flags
However, and hope not to be off-topic, a git repository (github, gitlab, codeplex, etc., not just solely github) could constitute a tidy approach, and make things easier to R Core :) By putting the focus on version control, the line of changes made with each commit (With the possibility to reverse changes), and not verbose e-mails. Juan I strongly disagree. Are you aware that github is a
2006 Oct 09
1
[Mac OS X 10.4] object R_loess_raw not found
Hello, Since I (finally) upgraded to 10.4 "Tiger", I've been experiencing some strange behaviour with dynamic libraries. When I now launch R, and try to use the loess() function from the stats package, I get the following: > R R version 2.4.0 (2006-10-03) Copyright (C) 2006 The R Foundation for Statistical Computing ISBN 3-900051-07-0 R is free software and comes with
2017 Dec 25
2
R CMD check warning about compiler warning flags
On 26 December 2017 at 00:00, Juan Telleria <jtelleriar at gmail.com> wrote: > Maybe I'm new, and forgive my ignorance, but maybe in the future (~ X years > from now) the R Project could be managed entirely from github, by doing I strongly disagree. Are you aware that github is a commercial company, github inc. [1] ? What about gitlab? or Microsoft's codeplex? There are other
2016 Mar 30
2
Accessing xenstore from libvirt
Hi, is it possible to access xenstore through libvirt? Or at least any other programatic means other than calling xenstore-read/write through shell? I understand it is somewhat of a security risk but still... Thanks, Marin
2011 Aug 02
1
CompiledCode execution + using scope + local variables in a loop => NullReferenceException
Hi, I have reported a bug on codeplex: http://ironruby.codeplex.com/workitem/6353 Will it be fixed in next release? Thank you, Anton -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20110802/78a24916/attachment.html>
2013 Nov 21
2
Running R embedded in an mpiexec spawned process - Fatal error: you must specify '--save', '--no-save' or '--vanilla'
I'd like someone familiar with the R options initialization to comment on a difference of behavior within/without mpiexec I have a (.NET) application with embedded R that is proven to run in a single process: ./Sample1.exe on a Debian Linux with R 3.0.2 Running the same code with mpiexec, it fails at the R engine initialization: mpiexec -n 1 ./Sample1.exe Fatal error: you must
2016 Oct 22
3
Is it possible to execute Objective-C code via LLVM JIT?
> So no JIT for i386? I didn't realise i386 still used ObjC 1 - all my experiments were on arm64. i386 support for ObjC would be nice to have, but it's not a blocker for adding ObjC 2 support. - Lang. On Thu, Oct 20, 2016 at 11:57 AM, Steven Wu <stevenwu at apple.com> wrote: > > > > On Oct 19, 2016, at 11:28 AM, Stanislav Pankevich <s.pankevich at
2016 May 10
3
[OpenCL] Question about pre-linking passes required to build OpenCL program
+ llvm-dev From: Sumner, Brian Sent: Tuesday, May 10, 2016 3:11 PM To: Anastasia Stulova <Anastasia.Stulova at arm.com>; Liu, Yaxun (Sam) <Yaxun.Liu at amd.com>; cfe-dev (cfe-dev at lists.llvm.org) <cfe-dev at lists.llvm.org>; Pan, Xiuli <xiuli.pan at intel.com>; Bader, Alexey (alexey.bader at intel.com) <alexey.bader at intel.com> Cc: Stellard, Thomas
2016 Nov 11
2
Is it possible to execute Objective-C code via LLVM JIT?
Hi Stanislav Thanks for checking on this. If you want a quick hack, you can try to read the code in tools/llvm-objdump/MachODump.cpp. There are some c code in there to parse metadata. My code is something I put up for my own purpose for debugging/parsing objc metadata. The interface is a bit rough to use but the biggest problem is testing. I have my own binary living out of tree to test the
2016 Oct 19
3
Is it possible to execute Objective-C code via LLVM JIT?
Hi Lang, Steven, At this point it seems that the best next step is for Steven to share his code, right? Or is there some other work that can be done in parallel? Lang? Steven? Here’s small note about my interest here: Alex Denisov and I are working on a tool for mutation testing https://github.com/AlexDenisov/mutang <https://github.com/AlexDenisov/mutang>. Alex has made fascinating
2006 Mar 21
1
R functionality from within C# .NET
Dear all (especially R-Win users), I'm looking for a good way to use R functionality from within a C# application. One way would be via (D)COM, but I would prefer a more "direct" solution: My main concern is to ship all necessary files in one easy-to-install package, so that users do not need to download and install R separately. Any help, advice, or example code would be greatly
2016 May 04
2
Is the CppBackend still supported?
On Wed, May 4, 2016 at 3:10 PM, Stanislav Manilov < stanislav.manilov at gmail.com> wrote: > As in "look at the source of clang" or as in "look at the -S -emit-llvm" > output? If you mean the former, then would that be easy for someone who > hasn't seen the clang source before? > Generally the latter - then potentially set some breakpoints & look at
2017 Mar 14
3
Samba AD DC backup - again
Hey list. I've searched all over last year conversations and it is (kinda) still unclear about backups. samba_backup script assumes that samba4 was installed from source, not from repository. https://github.com/thctlo/samba4/tree/master/backup-script is too overfunctional for simple backup script. Really, I know how to write shell scripts, but sometimes have headaches reading them ☺ The