similar to: IO: streaming input data

Displaying 20 results from an estimated 6000 matches similar to: "IO: streaming input data"

2007 Oct 21
6
exporting text output to pdf
Hello, I am new to R and I am trying to figure out how to print text output from an operation like table() to a pdf file. Is there a simple command to do this, or do you need to work with connections at a rudimentary level? Thanks you, Jesse [[alternative HTML version deleted]]
2008 Sep 16
2
casting a character vector as an object
Greetings, I need to compare the ratios of vector sizes like this: length(object1) / length(object2) I have many vector objects to compare, so I would like to do it in a loop. I created a loop like this: mat1 <- matrix() for (i in 1:6) { for (j in 1:6) { mat1[i,j] <- length( paste("object",i,sep="")) /
2010 Jul 20
1
[LLVMdev] Rendering MachineFunctions as HTML.
Hi All, I've developed a pass to render machine functions as HTML pages with some accompanying information about liveness and register pressure. Current features: Renders machine functions, optionally displaying estimated register pressure for selected register classes, and liveness for selected intervals. The following command line options can be used to enable and customise the
2007 Aug 09
5
Unremovable file in ZFS filesystem.
I managed to create a link in a ZFS directory that I can''t remove. Session as follows: # ls bayes.lock.router.3981 bayes_journal user_prefs # ls -li bayes.lock.router.3981 bayes.lock.router.3981: No such file or directory # ls bayes.lock.router.3981 bayes_journal user_prefs # /usr/sbin/unlink bayes.lock.router.3981 unlink: No such file or directory # find . -print
2009 Nov 03
3
re ading tokens
Greetings, I am not familiar with processing text in R. Can someone tell me how to read each line of words as separate elements in a list? FE, I would like to turn: word1 word2 word3 word2 word4 into a list of length two with three character elements in the first list and two elements in the second. I know that this should be easy, but I am a little confused by the text functions. Thanks in
2004 Sep 15
6
Bessel function
Dear all Currently, I'm implementing the generalized hyperbolic distribution into Splus. Unfortunately the Bessel function is not implemented in Splus. In R the Bessel function does exist but it is an internal function and I'm not able to look at the code. Is there any possibility to see the code of the Bessel function in R or does anybody has an implementation of the Bessel function in
2002 May 15
3
Struchture change of a data frame
Hi guys I've got an easy question but couldn't find any quick solution. I woulk like to change the following matrix good bad worse Blue 1 2 2 Yellow 2 1 3 Black 3 4 4 Into the following structure good 1 Blue Bad 2 Blue Worse 2 Blue Good 2 Yellow Bad 1 Yellow Worse 2 Yellow Good 2 Black Bad 4 Black Worse 4 Black Thanks a lot. Regards Beat Huggler --- Beat Huggler Quantitative
2011 Apr 17
2
2.0.12 ipwd.c does not compile under solaris
the new src/lib/ipwd.c introduced in 2.0.12 no longer compiles on solaris. Under solaris, the *_r routines doesn't pass in result as the last parameter and return errno - it just returns result. obviously a job for configure..... -- Roger Fujii<rmf at lookhere.com>
2007 Nov 18
2
Trouble with asterisk-users mailman
I'm trying this again because the last attempt didn't go through (thus more or less proving one of the below to be true.) Jesse Molina wrote: > > Test123 > > My messages to this mailing list are disappearing. > > Is this list quietly being moderated? > > Have I been wrongly black-holed? > > SpamAssassin gone wrong? > > > -- # Jesse
2007 Jun 05
4
uninitialized constant RailsHandler::Dispatcher
Hello, I am running in to an error trying to run mongrel. The server starts but then trying to access any url in my application throws this error: calling Dispatcher.dispatch uninitialized constant RailsHandler::Dispatcher ./script/../config/../vendor/rails/activesupport/lib/active_support/dependencies.rb:477:in `const_missing''
2003 Jun 10
1
-u updating too liberally
Hey ho. I apologize for what must be a stupid question, but I couldn't find any relevant posts in the archives. I want a daily backup of my home directory to another machine. Because I never delete any file, no matter how bloody useless, my home directory is inordinately large. So, it is important that I only back up those files that really need to be backed up. Here is the command I have
2012 Jan 31
10
[Bug 45421] New: regression: nouveau.ko fails to load
https://bugs.freedesktop.org/show_bug.cgi?id=45421 Bug #: 45421 Summary: regression: nouveau.ko fails to load Classification: Unclassified Product: xorg Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: major Priority: medium Component: Driver/nouveau
2011 Jun 21
2
Re: [1.3.22]Steam "F.E.A.R. 3"-Crashes On Start-Here I
You can also update your nvidia graphic driver. Else you can wait my test Friday when Stean will unlock the game...
2018 Aug 19
2
Missing folders inside huge folders catalog.
Hi, I get into the problem with samba ( Version 4.8.3-Debian ). Don't know how to troubleshoot it. The test scenario #1: Creating 5000 folders inside Linux server: #for i in {001..5000}; do mkdir $i; done; All catalogs are showing in Windows OS. All catalogs are showing in Linux OS. The test scenario #2: Creating 10000 folders inside Linux server: #for i in {001..10000}; do mkdir $i;
2011 Jul 25
2
SIGTERM not actually killing processes
Hi, Unicorn is saying it''s terminating but it''s not actually. Check out the gist:?https://gist.github.com/1104930 Using: - Ruby 1.9.2p180 - unicorn 4.0.1 - kgio 2.6.0 - bundler 1.0.15 - Linux maynard 2.6.38-10-generic #46-Ubuntu SMP Tue Jun 28 15:07:17 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux Please let me know if there''s any other info I can provide. Thanks, Jesse
2006 Jan 30
4
Logistic regression model selection with overdispersed/autocorrelated data
I am creating habitat selection models for caribou and other species with data collected from GPS collars. In my current situation the radio-collars recorded the locations of 30 caribou every 6 hours. I am then comparing resources used at caribou locations to random locations using logistic regression (standard habitat analysis). The data is therefore highly autocorrelated and this causes Type
2006 Oct 10
1
Mitel 5224/SIP no MWI
Does anybody know if this is supposed to work and if so, what, if any, workaround is needed? I have other phones (Snom, Polycom) MWI working with this system fine. 6.0.0.19 (latest) Mitel SIP firmware is loaded. Thanks for your time, - Jesse -- Jesse Peterson <jesse.peterson@exbiblio.com>
2008 Apr 03
3
Overloading and wrapping an association method
Hi all: For example I have: class Color < ActiveRecord::Base belongs_to :ball end class Ball < ActiveRecord::Base has_many :colors end What I want to do is to write a method that: 1. takes the result of Ball#colors, which is an array of Color objects 2. do something with the array 3. return the result but I want to name my method Ball#colors, i.e. I want to overload the generated
2011 Jun 21
1
Re: [1.3.22]Steam "F.E.A.R. 3"-Crashes On Start-Here I
Did you tried to launch the game directly with Steam ? Tried to install d3dx9 with winetricks ? It's strange that you can play at this game because on Steam, the game will unlock only the 06/24/2011... : http://store.steampowered.com/app/21100/?l=english Illegal download or not, that is the question [Laughing]
2011 Jun 21
1
Re: [1.3.22]Steam "F.E.A.R. 3"-Crashes On Start-Here I
Did you try to launch the game after to install d3dx9 via winetricks ? In France, the game release in two days... :'(