Displaying 10 results from an estimated 10 matches for "h2w".
Did you mean:
h2c
2006 Oct 04
1
RODBC: longest string is truncated
...haviour? Is this a bug? Can someone please
explain why the last character is truncated?
Many thanks for your help.
Jerome
OS: RHEL 4 AS
R version 2.3.1
RODBC version 1.1-7
--
Jerome Asselin, M.Sc., Agent de recherche, RHCE
CHUM -- Centre de recherche
3875 rue St-Urbain, 3e etage // Montreal QC H2W 1V1
Tel.: 514-890-8000 Poste 15914; Fax: 514-412-7106
2006 Oct 18
8
Automatic File Reading
Dear All,
I am given a set of files names as:
velocity1.txt
velocity2.txt
and so on.
I am sure there must be a way to read them automatically in R.
It is really taking me longer to read them than to analyze them.
Anybody has a suggestion to help me out with this?
Many thanks
Lorenzo
2006 Oct 13
1
Problemss compiling RODBC
When updating to the very last version of RODBC under freebsd 6.1 the
errors below pop up but RODBC compiles till the end and, it seems, to
work properly.
What are those errors about?
Vittorio
..............................................
checking for suffix of
executables...
checking for suffix of object files... o
checking
whether we are using the GNU C compiler... grep: error while
2006 Oct 20
2
RODBC problem
In a mdb table, I have a text field with values of 1, 2, .... When I
use rodbc to read it into R, it becomes numeric. Is it a bug or
something?
Thanks.
2006 Oct 27
2
Problem with RODBC
Hello,
I'am currently experiencing some problems with the odbcCloseAll() and odbcClose() function. I'm trying to connect an R script to a MySQL 5.0 database using RODBC1.1-7 and the MySQL ODBC Driver v.3.51 on a Windows XP Machine. At first everything seems fine. The script connects, reads and writes data but when it comes to odbcCloseAll() it crashes and hangs forever. Unfortunately I
2020 Aug 17
1
Installing devtoolset-6 on CentOS 8
...'--nobest' to
use not only best candidate packages
--
All options fail.
I hate having to install something not officially supported anymore, but
still officially required for many current software.
Thank you.
--
*?ric Gervais-Despr?s*
President
4270 St-Laurent #300
Montr?al, Qc, Canada, H2W 1Z3
+1-514-705-4946
*www.ngeniousstudio.com <http://www.ngeniousstudio.com>*
2006 Nov 17
2
Forming SQL Query at run-time
Hi.
I am trying to get data from mysql database using a couple of queries.
I do one query to find out the indexes. Then i need to use these
indexes in another query, but i keep getting errors.
Here is something:
numb <- dbSendQuery(con2, "select distinct(comparison) from table1")
count <- fetch(numb, -1)
my.matrix <- as.matrix(count)
rs <- dbSendQuery(con2, "select
2006 Oct 05
3
How to get the function names
I've defined the function
getFunNames <- function(FUN){
if (!is.list(FUN))
fun.names <- paste(deparse(substitute(FUN)), collapse = " ")
else
fun.names <- unlist(lapply(substitute(FUN)[-1], function(a) paste(a)))
fun.names
}
which gives what I want :
> getFunNames(mean)
[1] "mean"
> getFunNames(ff)
[1] "ff"
>
2009 Dec 21
0
[LLVMdev] llvm.org outage
...f the building. During this time, systems will be disconnected from the
> network in the following areas:
>
> * All 21xx rooms
> * 2227,2229,2231,2233,2235,2237
> * Business office (2210), 2224 and all the 22xx's west of 2224
> * Any networking jack that begins H2W
>
> We anticipate getting everything reconnected by 8am on the 22nd.
>
> * 1st floor east outage - Tuesday December 22nd, 6:00-8am
>
> After the routing replacement on Tuesday, December 22nd, TSG and CITES
> will replace the networking equipment servicing the 2nd floor west are...
2006 Oct 24
4
avoiding a loop
I think I asked a similar question 3 years ago to the Splus list and I
think the answer was no or noone answered so noone should spend more
than 5 minutes on this
because it could definitely be a waste of time.
My question is whether the function below can be rewritten without a for
loop. apply is fine if it can be done that way but i doubt it. I call it
a lot and would
prefer to not loop.