search for: horner

Displaying 20 results from an estimated 116 matches for "horner".

Did you mean: corner
2005 Jul 08
2
Multiple assignments in one statement
Is this possible? For instance, I have a function that returns a vector length 3. In one statement I'd like to assign each element of the vector to different variables. Syntactically, I hoped this would work: c(x,y,z) <- myfun(); Thanks, -- Jeffrey Horner Computer Systems Analyst School of Medicine 615-322-8606 Department of Biostatistics Vanderbilt University
2006 Sep 26
4
New project: littler for GNU R
...bilt.edu/LittleR accessed by anonymous SVN: $ svn co http://littler.googlecode.com/svn/trunk/ littler or (soon !) be gotten from Debian mirrors via $ agt-get install littler littler is known to build and run on Linux and OS X. Who ? ===== Copyright (C) 2006 Jeffrey Horner and Dirk Eddelbuettel littler is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distribut...
2004 Aug 18
3
R as shared library
...ariables and just place those in the top level environment, foregoing any callbacks into apache again until the R code has run to completion. This is similar to how PHP is embedded into Apache. Other languages that _do_ provide callbacks into apache include Perl, Python, and Ruby. -- Jeffrey Horner Computer Systems Analyst School of Medicine 615-322-8606 Department of Biostatistics Vanderbilt University
2006 Oct 05
1
littler release 0.0.6
...Suitable choices of X and Y are left to the user. Where ? ------- You can find the source tarball at both http://dirk.eddelbuettel.com/code/littler/ and http://biostat.mc.vanderbilt.edu/LittleR Comments are welcome, as are are suggestions, bug fixes, or patches. - Jeffrey Horner <jeff.horner at vanderbilt.edu> - Dirk Eddelbuettel <edd at debian.org> -- Hell, there are no rules here - we're trying to accomplish something. -- Thomas A. Edison
2009 Jan 12
0
Problems with RMySQL and MySQL server version 5.1
...ySQL 5.1, however the CRAN binary is linked against the 5.0 version. Best, Jeff -------- Original Message -------- Subject: Re: [R-sig-DB] Problems with RMySQL and MySQL server version 5.1 Date: Wed, 07 Jan 2009 16:36:48 +0000 From: Prof Brian Ripley <ripley at stats.ox.ac.uk> To: Jeffrey Horner <jeff.horner at vanderbilt.edu> CC: r-sig-db at stat.math.ethz.ch References: <4964CD3D.9000705 at vanderbilt.edu> There is a long, long history of precisely this (version mismatches in MySQL binaries cause crashes). We had it at 4.x, so I am not surprised to see it at 5.x now 'x&...
2004 Jun 25
4
Bug in parse(text = <long polynom>) (PR#7022)
...gt;>>>> on Thu, 24 Jun 2004 15:22:37 +0200 (CEST) writes: Jean> I was exploring the polynom library with students: <and found a segmentation fault from parsing a long expression> The following is reproducible also with the current version of R 1.9.1 [on RHEL Linux] horner <- function(p) { a <- as.character(rev(unclass(p))) h <- a[1] while (length(a <- a[-1]) > 0) { h <- paste("x*(", h, ")", sep = "") if (a[1] != 0) h <- paste(a[1], " + ", h, s...
2005 Aug 02
0
[ANNOUNCE] mod_R: The R/Apache Integration Project
...ge) > help(package="RApache") Information on package 'RApache' Description: Package: RApache Version: 0.1-0 Date: 2005-08-02 Title: An R interface to the Apache 2.0 web server Author: Jeffrey Horner Maintainer: Jeffrey Horner <jeff.horner at vanderbilt.edu> License: Apache License, Version 2.0 Description: RApache allows web applications to be written in R and executed within the Apache 2.0 web server. Built: R 2.1.0; i386-pc-linux-gnu; 2005-08-02 0...
2005 Aug 02
0
[ANNOUNCE] mod_R: The R/Apache Integration Project
...ge) > help(package="RApache") Information on package 'RApache' Description: Package: RApache Version: 0.1-0 Date: 2005-08-02 Title: An R interface to the Apache 2.0 web server Author: Jeffrey Horner Maintainer: Jeffrey Horner <jeff.horner at vanderbilt.edu> License: Apache License, Version 2.0 Description: RApache allows web applications to be written in R and executed within the Apache 2.0 web server. Built: R 2.1.0; i386-pc-linux-gnu; 2005-08-02 0...
2010 Mar 04
1
mysqlWriteTable . error in your SQL syntax?
...[,-10], row.names = F, overwrite=T) [1] TRUE > class(design2[,10]) [1] "character" > packageDescription('RMySQL') Package: RMySQL Version: 0.7-4 Date: 2009-04-07 Title: R interface to the MySQL database Author: David A. James and Saikat DebRoy Maintainer: Jeffrey Horner <jeff.horner@vanderbilt.edu> Description: Database interface and MySQL driver for R. This version complies with the database interface definition as implemented in the package DBI 0.2-2. LazyLoad: true Depends: R (>= 2.8.0), methods, DBI (>= 0.2-2), utils License: GPL-2 URL: http...
2007 Jul 23
5
sieve discard
Does the keyword/action discard work by default or is there something I have to do in the configuration to get to work... maybe I missed something on http://wiki.dovecot.org/LDA/Sieve I have the following rule: if anyof ( header :contains ["Subject"] ["Test Discard"] ) { discard; stop; } but it delivers to INBOX with or w/o the "stop;". If I change
2010 Jul 02
2
Best way to determine if you're running 32 or 64 bit R on windows
...(.Machine$sizeof.pointer==4){ cat('32\n') } else { cat('64\n') } Or is it better to test something in R.version, say os? I'd like to use this to specify appropriate linker arguments when building the RMySQL windows package. Jeff -- http://biostat.mc.vanderbilt.edu/JeffreyHorner
2010 Oct 01
2
Will PrintWarnings remain non static?
Hi, The C function PrintWarnings is currently not in the C API, but it is declared non static in the svn trunk as of revision 53110 . As this is the only function that creates the last.warning object used by the R function warnings(), I think it would be useful for programs that embed R to be able to call it. So, will it remain non static, that is callable although it's not declared in the
2009 Apr 29
1
Dynamic visualisation of R data using Adobe FLEX
Hi useRs, I had posted about Adobe FLEX talking to R for rich visualisation. Reply from Jeffery Horner contained links to the revolution-computing.com webpage which had information pertaining to the Bay Users R group Meetup on Web Dashboards with R. I have a very specific project that I need to implement. I wish to use the graphics capabilities provided by Adobe FLEX to visualise outputs from R. Fo...
2005 Jan 21
2
Struggling with S3/S4 interface issues and External Pointers
..." to "production" yet? For storing pointers in R variables, I've been using integer vectors which is what RMySQL does but doesn't seem natural. For those interested in my Apache R implementation, please download here: http://biostat.mc.vanderbilt.edu/twiki/pub/Main/JeffreyHorner/mod_R-0.0.tar.gz Cheers, -- Jeffrey Horner Computer Systems Analyst School of Medicine 615-322-8606 Department of Biostatistics Vanderbilt University
2008 Jul 24
3
Should this PDF render correctly without font embedding?
...s=2) text(0.5,0.7, 'Yo Yo Yo', pos=2) text(0.5,0.6, 'Yo Yo Yo Yo', pos=2) text(0.5,0.5, 'Yo Yo Yo Yo Yo', pos=2) text(0.5,0.4, 'Yo Yo Yo Yo Yo Yo', pos=2) text(0.5,0.3, 'Yo Yo Yo Yo Yo Yo Yo', pos=2) dev.off() Jeff -- http://biostat.mc.vanderbilt.edu/JeffreyHorner
2011 Sep 29
3
grep and PCRE fun
Hello, I think I've found a bug in the C function do_grep located in src/main/grep.c. It seems to affect both the latest revisions of R-2-13-branch and trunk when compiling R without optimizations and with it's own version of pcre located in src/extra, at least on ubuntu 10.04. According to the pcre_exec API (I presume the later versions), the ovecsize argument must be a multiple of 3 ,
2011 Feb 03
2
Creating a reference class object from a class definition in a package fails
Hi, I'm trying to create a package that contains reference class definitions from which users can create reference objects, but there seems to be something awry. My toy example creates an empty package via package.skeleton('TestClass') to which I add the following R code: TestClass <- setRefClass('TestClass',fields=c('name')) Unfortunately my R console output
2015 Mar 06
1
R with Array Hashes
...n passed 99% of the tests, however there were two that gave differing results which I think are related to traversing hashed environments. > > - what sort of speedups do you see on which type of benchmarks? I wrote up some notes on the benchmark I conducted here: https://github.com/jeffreyhorner/R-Array-Hash/tree/master/benchmarks > When you asked about benchmark code on Twitter, I shared the somewhat > well-known (but no R ...) http://benchmarksgame.alioth.debian.org/ > Did you write new benchmarks? Did you try the ones once assembled by Simon? I decided to design the benchmar...
2008 Sep 11
0
new RMySQL and new maintainer
Hello, [This is a re-posting of a previous announcement; I believe the original posting of a couple of days ago didn't go through.] The latest version of RMySQL 0.6-1 is now in CRAN. Please see the NEWS file for more details. Also, I'm happy to announce that Jeff Horner <jeff.horner at vanderbilt.edu> has kindly agreed to maintain RMySQL from now on. Please continue sending your comments, suggestions, bug reports , patches, etc., to the R-sig-DB mailing list. Regards, -- David _______________________________________________ R-packages mailing list R-pack...
2008 Dec 05
0
RMySQL 0.7-2 now available on CRAN
Dear R users, RMySQL 0.7-2 is now available on CRAN: http://cran.r-project.org/web/packages/RMySQL/index.html From the NEWS file: * New maintainer is Jeffrey Horner <jeff.horner at vanderbilt.edu>. * We no longer distribute libmysql.dll. This library is now found either by reading the MYSQL_HOME environment variable or by reading the windows registry entries. * Removed dependence on MySQL C function load_defaults() as it was meant for command-lin...