Displaying 7 results from an estimated 7 matches for "muehge".
2006 Sep 13
9
R-question
...umn in a data
frame (see attachment). After this I want to attach the column to the
original data frame.
How do I do this in R?
Dr .Th.M?hge,
PMP?
Procurement Technology Center
IBM Deutschland GmbH, Hechtsheimer Str.2, D-55131 Mainz
Phone: xx49-(0)6131-84-2416
Mobile: xx49-(0)15117457978
e-mail: muehge at de.ibm.com
(See attached file: Debug1.csv)
2006 Oct 05
2
Variables in RODBC environment
Hello Experts,
how can I use variables in the RODBC environment.
Example which does not work:
Thanks for your help.
Thorsten
pn <- '39R5238';
library(RODBC);
odbcobj <- odbcConnect("SQUIT21C",uid="muehge",pwd="xxx");
sql <- "select
u.unitid,
from test
where part in ('pn')
";
parameter <- sqlQuery(odbcobj,sql);
odbcClose(odbcobj);
2006 Nov 07
3
Reformat a data frame
Hello Experts,
how do I reformat a data frame in the way described below:
df1:
ID desc resist thick temp
1 4711 100 5 20
2 4712 101 4 21
3 4711 99 3 19
4 4712 98 7 22
TO
df2:
id desc Param Value
1 4711 resist 100
1 4711 Thick 5
1 4711 temp 20
2 4712 resist 101
2 4712 Thick 4
2 4712 temp 21
3
2008 May 28
4
Help on Calculating day differences
Hello R Freaks,
I calculate the difference in days between two events with the following
litte R expresseion:
T1a <- strptime(T1,"%m/%d/%y %H:%M:%S");
T2a <- strptime(T2,"%m/%d/%y %H:%M:%S");
T1b <- as.Date(T1a);
T2b <- as.Date(T2a);
days <- T2b-T1b;
time <- T2a - T1a;
In the project I would like to calculate only working day.
I the a possibility to count
2007 Dec 03
1
help on qcc
Hello R Experts,
I started to work with the qcc package and it wprks quite nicely.
Heres My Code:
n <-
c(55,5,94,25,10,15,15,40,44,34,90,114,204,37,30,28,12,68,64,29,24,14,31,16,62,45,55,20,24,14,9,19,76,57,55,42,6,
54,32,117,19,32,9,11,13,31,27,33,44,28)
x <- c(6,0,30,5,2,1,4,5,2,9,12,24,64,3,9,21,9,48,15,4,3,0,1,0,6,
7,2,0,3,2,0,5,1,2,6,9,1,6,2,0,1,4,8,0,1,1,3,0,0,0)
2009 Jan 22
2
How to Run R Programs in a Scheduled Way
Hello R Experts,
does anyone know how to run R programs automatically using the window
scheduler?
I want to run some R programs automatically and make the results available
via web.
Mit freundlichen Grüßen / Best Regards / С наилучшими пожеланиями /
üdvözlettel
Thorsten
[[alternative HTML version deleted]]
2006 Nov 07
1
OBS in Column 1
Hello R Freaks,
is there a way to omit the counts in the first column of a data.frame.
Thanks a lot for your help
Thorsten