search for: ceg

Displaying 16 results from an estimated 16 matches for "ceg".

Did you mean: cseg
2010 Aug 08
2
subset of string by index
How can I get a substring based on the index into the string? strM <- c("abcde", "cdefg") ind <- c(1,3,5) I want to use ind to index into the strings so the result is: strMind <- c("ace", "ceg")
2005 May 11
2
centos 3.5 ?
Hi all, I see centos 3.5Beta in the beta.centos.org. Is this the next release of version 3 ? Strangely, 3.4 is not the final release of version 3 ? Thx Ceg Ryan
2007 Jul 05
1
R Logging Package
...;> This e-mail and any attachments are confidential, may contain legal, professional or other privileged information, and are intended solely for the addressee. If you are not the intended recipient, do not use the information in this e-mail in any way, delete this e-mail and notify the sender. CEG-IP1 [[alternative HTML version deleted]]
2008 Feb 05
1
SAS ODBC
...;> This e-mail and any attachments are confidential, may contain legal, professional or other privileged information, and are intended solely for the addressee. If you are not the intended recipient, do not use the information in this e-mail in any way, delete this e-mail and notify the sender. CEG-IP2
2008 Oct 06
2
Graphics window BUG
I thought this problem would be resolved when I switched to R version 2.7.0 (for Windows), but no - anytime I plot something that produces more than one page of graphics, the graphics window starts by showing the first page, until such time as I hit enter to show me the next page, at which time it speeds through every consecutive page and freezes on the last one. At this point the last page is
2006 Feb 14
2
apache virtual host
I don't ever do this... Shouldn't this be enough to set up a virtual server in apache? I did create an entry in /etc/hosts and in dns for this fqdn it still gives me the contents of /var/www/html and not /home/craig/ruby-db/th-db/public <VirtualHost *> DocumentRoot "/home/craig/ruby-db/th-db/public" ServerName app-server.tobyhouse.com <Directory
2005 Jun 20
1
4.1 x86_64 doesn't contain a mkbootdisk rpm
4.1 x86_64 doesn't contain a mkbootdisk rpm Then, How do I make a bootdisk easily ? (I know how to use grub to make the bootdisk.) But any other easier method ? Thx !
2007 May 19
0
Tyan Teledo i3010w (S5197) on CentOS 4.4
Hi Everybody, Does anyone could install CentOS 4.4 on Tyan Teledo i3010w (S5197) successfully ? without any kernel parameter when boot up. I haven't buy it yet. But I want to make sure it works with CentOS 4.4. Thanks. Ceg Ryan -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20070519/6d9d4105/attachment.html>
2006 Oct 27
2
Question: xyplot panel configurations for Trellis package
...;> This e-mail and any attachments are confidential, may contain legal, professional or other privileged information, and are intended solely for the addressee. If you are not the intended recipient, do not use the information in this e-mail in any way, delete this e-mail and notify the sender. CEG-IP2 [[alternative HTML version deleted]]
2007 Jul 12
3
eMail results out of R
Hi everyone, I did my homework and read the posting guideline :-) I want to eMail the results of a computing automatically. So I get the results (the parameters of a garch process) and I want to eMail them to another person. How can I do that? Thx ______________________________ Thomas Schwander MVV Energie Konzern-Risikocontrolling Telefon 0621 - 290-3115 Telefax 0621 - 290-3664 E-Mail:
2005 Jun 26
1
strange problem on regconizing /dev/sda and /dev/hda
I installed a 4.1 x86_64 with kernel 2.6.9-11.ELsmp (rpm) initially. My box is tyan 5350 and a SATA harddisk The install was successful and the harddisk was detected as /dev/sdaX But strangely, when I first reboot my machine. The harddisk change to /dev/hdaX What is the problem ? Below are some of dmesg output hda: WDC WD1200JD-00HBB0, ATA DISK drive Probing IDE interface ide1... Probing IDE
2008 Apr 24
1
R and condor
Hello, I would be extremely grateful if anyone is able to provide any (rather obscure) advice on using R with Condor. I think I'm following Xianhong Xie's instructions (R News 5(2) 13-15) correctly, but my job just stays held in the queue (for days / months). I've checked condor_status to make sure there are plenty of machines available, but can't see any way to attack the
2008 Feb 11
2
Viable Approach to Parallel R?
All, We are researching approaches to parallel R with the end goal of running R in a distributed manner on a Linux cluster. We expect of course to do some work decomposing our problems to be task-parallel or data-parallel, but wouldn't mind getting an initial boost working with "embarrassingly parallel" code sections and one of the approaches below. Incidentally our environment
2008 Jun 17
3
Sweave: problem with usepackage{C:/PROGRA~1/R/R-27~1.0/share/texmf/Sweave}
R users, I'm at a loss with a problem considering running .tex files produced by Sweave. When I run (R 2.7.0): --------------------------------------------------- #Taken from ?Sweave testfile <- system.file("Sweave", "Sweave-test-1.Rnw", package = "utils") ## enforce par(ask=FALSE) options(device.ask.default=FALSE) ## create a LaTeX file Sweave(testfile)
2007 Apr 23
4
Estimates at each iteration of optim()?
I am trying to maximise a complicated loglikelihood function with the "optim" command. Is there some way to get to know the estiamtes at each iteration? When I put "control=list(trace=TRUE)" as an option in "optim", I just got the initial and final values of the loglikelihood, number of iterations and whether the routine has converged or not. I need to know the
2020 Jan 18
1
How to get an object name from C?
(earlier I sent it as html by mistake). Hi, How can I get from C an object name used as a function argument? I have sample code in C that gives me access to the name of the function being called: SEXP xname(SEXP x) { const char *fun_name = CHAR(PRINTNAME(CAR(x))); x = CDR(x); const char *arg_name = isNull(TAG(x)) ? "" : CHAR(PRINTNAME(TAG(x)));