similar to: Video demo of using svSocket with data.table

Displaying 20 results from an estimated 4000 matches similar to: "Video demo of using svSocket with data.table"

2009 Aug 27
1
[Fwd: Re: Video demo of using svSocket with data.table]
Forwarded to R-Help, because I think it could interest people following this thread. Clearly, RServe and svSocket have different goals and very little overlap. Best, Philippe -------- Original Message -------- Subject: Re: Video demo of using svSocket with data.table Date: Wed, 26 Aug 2009 20:34:19 +0100 From: Matthew Dowle <mdowle at mdowle.plus.com> Reply-To: Matthew Dowle
2009 Jul 25
2
Using svSocket with data.table
Hi r-devel, svSocket is working well. Short demo here of using it with data.table : http://www.youtube.com/watch?v=rvT8XThGA8o If you maximise and press the HD button it should be readable. There isn't any audio. However, svSocket is currently text based IPC using dump. Is there a solution which will do binary and work in the same way ? Its nice that I can make R become a server any
2006 Mar 07
12
what is the IDE tools used in the video?
What is the IDE tools used in the video on the homepage of the www.rubyonrails.org?I had thought it was Komodo,however after I had installed that i found they were different.I do think the IDE used in the video is very cool for its autocomplete abilities especially in the Views development.Thanks! -- Posted via http://www.ruby-forum.com/.
2005 Apr 02
2
Solaris10/amd64 + SunSutio Compile (PR#7767)
Full_Name: Teru KAMOGASHRIA Version: 2.0.1 OS: SunOS sun 5.10 Generic i86pc i386 i86pc Submission from: (NULL) (219.5.176.24) rbinom.c cannot be compiled because of the casting problem. /opt/SUNWspro/bin/cc -I. -I../../src/include -I../../src/include -I/usr/local/include -DHAVE_CONFIG_H -D__NO_MATH_INLINES -g -c rbinom.c -o rbinom.o "rbinom.c", line 60: operand must have real
2006 Jan 30
5
Debian Sarge Server with iptables behind D-Link Router
Hi, I have the shown (end of this post) net work configuration. In a "few" words: My Debian Sarge server is connected to a D-Link ADSL Router (DSL-562T). DMZ is enabled for the Debian Sarge IP on the Router. My Linux server has two NIC''s. ethlan = internal Net ethdsl = external -> D-Link My Linux server is configured to make NAT via iptables. Current state -
2017 Aug 25
9
[5.0.0 Release] Release Candidate 3 tagged
Dear testers, 5.0.0-rc3 was just tagged. This is a release candidate in the real sense: if nothing bad comes up in testing, this is what the release is going to look like. Please build, test and upload binaries to the sftp (use the /data/testers-uploads/ directory) and let me know what issues remain. I know we're a little bit behind schedule, but hopefully we can get to 'final'
2012 Feb 17
8
Puppet syntax check for Komodo Edit
Hi folks, Recently I''ve been using a MacBook Pro (Lion) as a workstation, I''m feeling good even if still missing some tool (coming from Ubuntu environment). I''d like to have a cross platform IDE with basic Puppet syntax highlight, so far the one that seems to better fit my needs is Komodo Edit v7, that is mentioned here:
2008 Jun 07
1
EVMS?
EVMS Enterprise Volume Management System sounds interesting, looks like it supported CentOS4, but not CentOS5. But maybe I'm not looking in the right places. -- Drew Einhorn -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20080607/a5de7c79/attachment-0002.html>
2005 Jan 16
2
Postfix 2.1 RPM?
hi all, i`m looking for an postfix 2.1 rpm for CentOS 3 with TSL support. i tried the rpm form: http://ftp.wl0.org/official/2.1/RPMS-rhel3-i386/postfix-2.1.5-4.rhel3.i386.rpm but it doesn`t support tsl.
2011 Jan 04
2
Courier-mta with Dovecot LDA again
Hi all Sorry for repost, but i don't believe that there is noone who know where the problem can be. At least developers should know :-) I have sent this post once, but without answer. I have setup dovecot lda instead of maildrop on my courier server. Delivery is working, sieve plugin too, but i can't figure out why lda can't send emails via sendmail (vacation). I always get
2006 May 17
40
IDE recommendations?
I was wondering if there are any IDEs out there that has autocomplete features for win32. It would be perfect if it could do something akin to what DHH is doing on the screencast hosted on the rails website. http://media.rubyonrails.org/video/rails_take2_with_sound.mov Cheers -- Posted via http://www.ruby-forum.com/.
2006 May 23
4
Where''s Ruby? Too many Ruby interpreters on OS X.
I seem to have two versions of Ruby on my PowerBook. I have been learning RoR and walked through the online scripted install of Ruby and Rails several weeks ago before I really understood what was going on. If I open Terminal and type: ruby -v I get back: ruby 1.8.4 (2005-12-24) [powerpc-darwin8.5.0] So that looks fine, but I don''t know where my Ruby interpreter is located. I
2009 Aug 27
19
Best R text editors?
Quick informal poll: what is everyone's favorite text editor for working with R? I'd like to hear from people who are using editors that have some level of direct R interface (e.g. Tinn-R, Komodo+SciViews). Thanks! --j -- Jonathan A. Greenberg, PhD Postdoctoral Scholar Center for Spatial Technologies and Remote Sensing (CSTARS) University of California, Davis One Shields Avenue The
2009 Feb 02
2
Upgrading to TINN - R 2.1.1.6
I know this has been addressed before, but I'm still confused by the solution. When running TINN - R (ver 2.1.1.6) with R (2.8.0) I have lost the functionality of TINN-R It returns an error source(.trPaths[5], echo=TRUE, max.deparse.length=150) I modified the RProfile.site file as follows: options(pager="interal") .trPaths=c( 'C:/Documents and
2009 Mar 24
2
install.package("TinnR") - there is no package called 'TinnR'
I have troubles make TinnR 2.2.0.2 work, it seems that the dependency on the package TinnR that cannot be found (I tried also manual downloads, but I cannot find the package anywhere on any CRAN mirror). I even set a default cran mirror in the Rprofile.site file, so that the later command can find it: # check necesary packages necessary = c('TinnR', 'svSocket') installed =
2006 Mar 02
5
Deparsing '...'
Hi, The following function works, but is there a neater way to write it? f = function(x,...) { # return a character vector of the arguments passed in after 'x' gsub(" ","",unlist(strsplit(deparse(substitute(list(...))),"[(,)]")))[-1] } > f(x,a,b,c*d) [1] "a" "b" "c*d" > Thanks. [[alternative HTML
2005 Mar 10
4
dealing with package bundles (was RE: Gregmisc)
Given the confusions that some users have regarding package bundles, I'd like to suggest some changes to how package bundles are handled. My understanding is that a package bundle is essentially a convenient way to distribute related packages, so that users can download/install them in one shot. However, some users apparently get confused that one can do install.packages("abundle")
2005 Mar 10
4
dealing with package bundles (was RE: Gregmisc)
Given the confusions that some users have regarding package bundles, I'd like to suggest some changes to how package bundles are handled. My understanding is that a package bundle is essentially a convenient way to distribute related packages, so that users can download/install them in one shot. However, some users apparently get confused that one can do install.packages("abundle")
2010 Apr 30
1
Problem: packages TinnR, Hmisc, applications Tinn-R and R version 2.11.0
Hi, First: sorry for my bad English! I have received several emails reporting problems using Tinn-R with the new R version (2.11.0). This email is meant to assist the users. This problem is new and is related with R 2.11.0 and Hmisc package for Windows! After download and install R 2.11.0pat under Linux and Windows, see below my results: a) Under Linux (Open SUSE 11.3) - I found no problem
2005 Dec 09
3
[R] data.frame() size
Hi, Please see below for post on r-help regarding data.frame() and the possibility of dropping rownames, for space and time reasons. I've made some changes, attached, and it seems to be working well. I see the expected space (90% saved) and time (10 times faster) savings. There are no doubt some bugs, and needs more work and testing, but I thought I would post first at this stage. Could some