search for: r_dir

Displaying 5 results from an estimated 5 matches for "r_dir".

Did you mean: s_dir
2012 Jun 06
1
problem in compililng c code using R CMD SHLIB
Hello all, I was trying to compile a simple C program hello.c using R CMD SHLIB hello.c. MY R software residing in C:\Program Files\R\R-2.15.0, and also I have downloaded the Rtools 2.15.0 and it is in C:\Rtools, MY file(hello.c) is in E:\R_dir. I have followed the procedures given below 1. In a new CMD.exe window I have set the path as c:\ Rtools\bin; C:\Rtools\MinGW\bin;C:\Program Files\R\R-2.15.0\bin 2. I have changed the directory to E:\ where my file(hello.c) is residing E:\>cd \R_dir then I have given the command like this E:\&...
2007 Apr 06
1
getConnection is not found in R depending on the Linux flavour (RedHat or Debian) - dyn.load problems
...-enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --host=i386-redhat-linux Thread model: posix Compiling the dynamic library: Makevars: PKG_CFLAGS = -ansi -DUSE_TYPE_CHECKING_STRICT R CMD SHLIB -o test.so *.c gcc -I/afs/in2p3.fr/home/throng/biometr/R_dir/install//lib/R/include -I/afs/in2p3.fr/home/throng/biometr/R_dir/install//lib/R/include -I/usr/local/include -ansi -DUSE_TYPE_CHECKING_STRICT -fpic -g -O2 -std=gnu99 -c alignment.c -o alignment.o gcc -I/afs/in2p3.fr/home/throng/biometr/R_dir/install//lib/R/include -I/afs/in2p3.fr/home/thron...
2020 Oct 08
0
Lahman Baseball Data Using R DBI Package
...e probably realized by now that R doesn't like column names that start with a number. If you try to access an R-dataframe column named 2B or 3B with the familiar "$" notation, you'll get an error: > library(DBI) > library(RSQLite) > con2 <- dbConnect(SQLite(), "~/R_Dir/lahmansbaseballdb.sqlite") > Hack12Batting <- dbGetQuery(con2,"SELECT * FROM batting WHERE yearID = 2018 AND AB >600 ORDER BY AB DESC") > Hack12Batting$AB [1] 664 661 639 632 632 632 626 623 620 618 617 613 606 605 602 > Hack12Batting$3B Error: unexpected numeric cons...
2020 Oct 08
1
Lahman Baseball Data Using R DBI Package
...at R doesn't like column names that > start with a number. If you try to access an R-dataframe column named > 2B or 3B with the familiar "$" notation, you'll get an error: > > > library(DBI) > > library(RSQLite) > > con2 <- dbConnect(SQLite(), "~/R_Dir/lahmansbaseballdb.sqlite") > > Hack12Batting <- dbGetQuery(con2,"SELECT * FROM batting WHERE yearID = > 2018 AND AB >600 ORDER BY AB DESC") > > Hack12Batting$AB > [1] 664 661 639 632 632 632 626 623 620 618 617 613 606 605 602 > > Hack12Batting$3B >...
2020 Oct 03
1
Lahman Baseball Data Using R DBI Package
The double quotes are required by SQL if a name is not of the form letter-followed-by-any-number-of-letters-or-numbers or if the name is a SQL keyword like 'where' or 'select'. If you are doing this from a function, you may as well quote all the names. -Bill On Fri, Oct 2, 2020 at 6:18 PM Philip <herd_dog at cox.net> wrote: > The \?2B\? worked. Have no idea why. Can