search for: rs

Displaying 20 results from an estimated 1943 matches for "rs".

Did you mean: rsp
2010 Nov 26
1
R Tools & Vista_x64: Problem compiling RMySQL?
Hello: What do I need to do to compile R packages (especially RMySQL) for the 64-bit version of R 2.12.0 under Vista_x64? I upgraded to "Rtools212.exe" yesterday but immediately got errors from "R CMD check RMySQL_0.7-5.tar.gz". After the first error, I installed it a second time, then got "undefined reference to" roughly 50 different names beginni...
2009 Jan 30
2
Problem installing RMySQL ("S4R.h:40:17: error: S.h: No such file or directory"?)
Hi, I'm trying to install RMySQL and I keep hitting errors. My computer is: uname -a Linux cricket 2.6.18-92.1.22.el5PAE #1 SMP Tue Dec 16 12:36:25 EST 2008 i686 i686 i386 GNU/Linux I have set the following environment settings: export PKG_LIBS="-L/usr/lib/mysql -lmysqlclient" export PKG_CPPFLAGS="-I/usr/include/mysql" I run the f...
2005 Mar 14
2
Install the RMySQL
...reating cache ./config.cache checking how to run the C preprocessor... cc -E checking for compress in -lz... yes checking for getopt_long in -lc... yes checking for mysql_init in -lmysqlclient... no checking for mysql.h... no updating cache ./config.cache creating ./config.status creating src/Makevars ** libs gcc -I/usr/local/lib/R/include -I/var/lib/mysql - I/usr/local/include -fPIC -g -O2 -c RS-DBI.c -o RS-DBI.o gcc -I/usr/local/lib/R/include -I/var/lib/mysql - I/usr/local/include -fPIC -g -O2 -c RS-MySQL.c -o RS- MySQL.o In file included from RS-MySQL.c:22: RS-MySQL.h:40:19: mysql.h: No...
2003 Oct 15
5
Problems Building RMySQL in Windows
...ySQL ------------ ********************************************** WARNING: this package has a configure script It probably needs manual configuration ********************************************** installing inst files adding build stamp to DESCRIPTION making DLL ... making RS-DBI.d from RS-DBI.c making RS-MySQL.d from RS-MySQL.c gcc -Ic:/mysql/include -IC:/PROGRA~1/R/rw1071/src/include -Wall -O2 -c RS-DBI.c -o RS-DBI.o gcc -Ic:/mysql/include -IC:/PROGRA~1/R/rw1071/src/include -Wall -O2 -c RS-MySQL.c -o RS-MySQL.o ar cr RMySQL.a *.o ranlib RMySQL.a windres --in...
2008 Oct 17
1
missing Rversion.h and Rconfig.h when installing RSQLite under FC8
Hello, I am having problems installing RSQLite under FC8. The error message seems to indicate Rversion.h and Rconfig.h are missing. To illustrate the problem, I have copied below the output shown when I first install R (binary distribution) and then try to install RSQLite. Because the problem does not occur when installing RSQLite with R u...
2010 Jun 02
1
Problems using gamlss to model zero-inflated and overdispersed count data: "the global deviance is increasing"
Dear all, I am using gamlss (Package gamlss version 4.0-0, R version 2.10.1, Windows XP Service Pack 3 on a HP EliteBook) to relate bird counts to habit variables. However, most models fail because “the global deviance is increasing” and I am not sure what causes this behaviour. The dataset consists of counts of birds (duck) and 5 habit variable...
2004 May 07
1
Error compiling ROracle on Windows 2000
Hello, I am trying to compile ROracle _0.5-4 under R 1.9.0 without much success. I am running Windows 2000 SP4, Visual C++ 6.0 SP6, and Oracle client 9.2.0.1.0. I was able to run the pre-compiled version of ROracle_0.5-2 under R 1.7.1, but does not work on R 1.8.1 or R 1.9.0. Here is the output from nmake: C:\Program Files\R\rw1090\library\ROracle\src>nmake Microsoft (R) Program Maintenance Utility Version 6.00.9782.0 Copyright (C) Microsoft Corp 1988-1998. All rights reserved....
2010 Jan 10
1
xmlToDataFrame#Help!!!#follow-up
Dieter Menne pointed out that the (small) xml attachment didn't make it. Here is an in-line version (see end of message). Let's hope it works this time. I'm struggling with interpreting XML files created by ADODB as data.frames and I'm looking for advice. Note: This xlm contains a result set which comes from a rectangular data array. I've been trying to play with parameter...
2012 Nov 22
1
problems with RPostgreSQL compilation
Hello, I am trying to install RPostgreSQL, but without success at the moment, getting an errormessage - see below. My OS is Fedora 17, R version 2.15.2, PostgreSQL 9.2.1 with Postgis 2.0.1 spatial extension. Thank You for any help, advice or hint in advance. Regards Tomas > install.packages("RPostgreSQL", dependencies=TRUE) trying URL 'http://cran.fyxm.net/src/contrib/RPostgreSQL_0.3-3.tar.gz' Content type '...
2019 Aug 05
3
Re: [PATCH] Rust bindings: Implement Event features
...- Fix Handle -> Handle<'a> - Add events Regards, Hiroyuki 2019年8月1日(木) 0:01 Pino Toscano <ptoscano@redhat.com>: > Hi Hiroyuki, > > On Tuesday, 30 July 2019 07:51:37 CEST Hiroyuki Katsura wrote: > > This patch includes: > > > > - Event callback handlers > > - Tests related to events(410-430) > > --- > > Would it be possible to split the Handle -> Handle<'a> change in an own > small patch? This way it can be documented why it was changed. > > > +pub fn event_to_string(events: &[guestfs::Event]) -> R...
2016 Jan 21
0
[PATCH v3 1/6] daemon: Rename daemon/command.c -> daemon/sh.c.
...c +++ /dev/null @@ -1,319 +0,0 @@ -/* libguestfs - the guestfsd daemon - * Copyright (C) 2009 Red Hat Inc. - * - * This program 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 distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License...
2019 Aug 05
0
[PATCH 1/2] Rust bindings: Add Event structs, Clarify Handle lifetime
Without clarifying handle's lifetime, it is unable to see how long the callbacks which the handle owns will live. Then, Rust compiler will infer that the callbacks have 'static lifetime. It is not convenient for users. --- generator/rust.ml | 38 ++++++++++++++++++++++++++++++- rust/src/base.rs | 23 +++++++++++++------ rust/src/error.rs | 2 +- rust/src/event.rs | 4 ++++ rust/src/lib.rs | 2 ++ rust/tests/040_create_multiple...
2008 Jun 17
4
Formating Date Field
First.jsp ------------------ <jsp:usebean id="db" class="db.dbClass" scope=session/> <html> <body> <form action="MyAction.jsp" method="post"> <% ResultSet rs=db.executeQuery("select no,name from mytable"); while(rs.next()) {%&g...
2019 Jul 30
4
[PATCH] Rust bindings: Implement Event features
This patch includes: - Event callback handlers - Tests related to events(410-430) --- generator/rust.ml | 38 ++++++- rust/src/base.rs | 24 +++-- rust/src/error.rs | 8 +- rust/src/event.rs | 158 ++++++++++++++++++++++++++++ rust/src/lib.rs | 2...
2006 Mar 23
17
Poor performance on NFS-exported ZFS volumes
...#39;'m working with is limited in that I can only do NFSv2 mounts... irregardless of that aspect, I''m sure something''s amiss. I mounted the zfs-based nfs share on the linux host and tested it like so and ran tests with dd: --------------- [root at hercules]/>mount -o rw,vers=2,hard,intr,rsize=8192,wsize=8192 ds2.rs:/ds-store/rs/test /umbc/test [root at hercules]/>time dd if=/dev/zero of=/umbc/test/testfile1 bs=16k count=16384 16384+0 records in 16384+0 records out real 170m51.619s user 0m0.060s sys 0m5.720s --------------- Ooof. 170 minutes to write a 25...
2012 Oct 09
2
RMySQL install on windows
...re comments about POSIX paths that I don't quite grasp. Can anyone give me additional hints? There seems to be a libmysql.dll in the /lib subdirectory although the install seems to be looking in the /bin directory for a file of similar name. Is this something that has changed with recent versions of MySQL that should be fixed in the RMySQL package or is it something I can work around by hand or by properly setting some environmental variable? Thanks, Rob The errors ... > install.packages('RMySQL',type='source') trying URL 'http://cran.wustl.edu/src/contrib/...
2009 Oct 22
2
Replacing multiple elements in a vector !
Hi, I have a vector with elements rs.id=c(''rs100'',''rs101'',''rs102'',''rs103'') And a dataframe ''snp.id'' 1 SNP_100 rs100 2 SNP_101 rs101 3 SNP_102 rs102 4...
2008 Jan 29
1
"ROracle" Packages is not to be installed (PR#10652)
Full_Name: JinNyong Huh Version: 2.6.1 OS: Linux(SUSE-9.0) Submission from: (NULL) (220.75.209.235) ROracle Packages is not to be installed in my Linux. The enviroments are as follows: * O/S Profile [ export ORACLE_BASE=/opt/oracle export ORACLE_SID=DEMO10G export ORACLE_HOME=$ORACLE_BASE/product/10g export ORACLE_DOC=$ORA...
2019 Aug 05
2
[PATCH 2/2] Rust bindings: Implement callback handlers
This patch includes: - Event callback handlers - Tests related to events(410-430) src/bin/event.rs and src/bin/event_leak.rs are the PoCs that Boxes related to callbacks are not leaked. --- rust/src/bin/.gitkeep | 0 rust/src/bin/event.rs | 29 ++++++ rust/src/bin/event_leak.rs | 30 ++++++ rust/src/er...
2019 Jun 11
3
[nbdkit PATCH 0/2] Few rust plugin fixups/nitpicks
...aults should be the priority. But this was just something I stumbled upon when I saw some warnings during build, nothing more. Martin Kletzander (2): rust: Do not use deprecated integer types rust: Remove libc dependency plugins/rust/Cargo.toml.in | 1 - plugins/rust/examples/ramdisk.rs | 15 ++++++------- plugins/rust/src/lib.rs | 37 +++++++++++++++----------------- 3 files changed, 24 insertions(+), 29 deletions(-) -- 2.21.0