Displaying 20 results from an estimated 3700 matches for "1998".
Did you mean:
  1098
  
2007 Sep 04
1
interpolation
Hello R Users,
I am new to R and I have simple problem for R users.
I have CO2 observations defined on time axis(yr,mo,day,hr,min,sec). (DATA
ATTACHED HERE)
First I want to convert time axis as one axis as 'hour' on regular interval
as 1 hour. Say 00 hrs to 24hrs(jan1), 25hrs to 48hrs(jan2) and so on.
Then I want to interpolate CO2 at every hour.
Kindly anybody can help,
Many thanks,
2010 Mar 16
1
nested looping functions and dataframes
...ion(i,j){
a<-x[which(x$Year==i & x$Location==j),]
b<-as.data.frame(as.matrix(table(a$Species,a$Species)))
c<-b[-which(b$Var1==b$Var2),-3]
c$Year<-i; c$Location<-j
return(c)
}
Where, x is a dataframe that looks like the following:
> head(x,n=20)
   Year Location    Species
66 1998   PIPE_7      ACMI2
67 1998   PIPE_7      AMAR2
68 1998   PIPE_7      AMCA6
69 1998   PIPE_7       ANCY
70 1998   PIPE_7       ASVE
71 1998   PIPE_7       BOCU
72 1998   PIPE_7       CIFL
73 1998   PIPE_7      DAPU5
74 1998   PIPE_7 DICHANTHEL
75 1998   PIPE_7      GABO2
76 1998   PIPE_7      HEHE5...
1998 Jul 14
1
smbstatus show open files when none are
...s or explanations? I've added my [global] section also just
in case someone wants to see it.
Samba version 1.9.18p8
Service      uid      gid      pid     machine
----------------------------------------------
public       ftp      data     26423   401308   (141.240.154.33) Mon Jul 13 15:40:17 1998
spc          ftp      data     26560   orlme400783 (141.240.154.75) Mon Jul 13 23:45:29 1998
public       ftp      data     26709   oclme405685 (141.240.124.145) Tue Jul 14 04:53:06 1998
public       ftp      data     26426   arakis   (141.240.124.110) Mon Jul 13 15:47:38 1998
ois          ftp...
2004 Jul 19
2
problem with read.table
...first lines are remarks lines and the fourth 
contains columns titles ( variables names, ids, dates, calculated values, 
observed values...) . I do:
read.table("myFile", header=TRUE, sep = "\t", skip = 3)
I obtain a strange result, lines are in a bad order:
    cell6/voxel15   1998/365a       2.0     1.0     0.55 
0.27480000257492065     0\nRendement de la 
culture      0.0     crop4   0/0a    0.0     1.0     0.0     0.0 
0\nRendement de la 
culture      0.0     crop4   1998/75a        0.0     1.0     0.0     0.0 
  0\nRendement de la 
culture      0.0     crop4   1998/150a...
1998 Dec 03
2
interactions between OPIE-ftpd and RH5.2
...opie sequence *has*
decremented by one -- clearly, the user is satisfying the challenge
somewhere.  (and it doesn't decrement if the one-time-password is
incorrect.)
The error that gets logged is of this form:
# Dec  3 11:36:41 foo ftpd[23527]: connection from localhost at Thu Dec  3 11:36:41 1998 
# Dec  3 11:36:42 foo ftpd[23527]: Invalid FTP user name adam attempted from localhost.
Naturally, the username "adam" is a valid one, and I can successfully ftp
in using that userid and a static password via the stock wuftpd that RedHat
sees fit to ship.
Anonymous ftp via the opie-ftp...
2003 Aug 21
2
Read date for timeserie object
Dear all,
Is there a simple trick to read in data with the following format and
create a Time Serie object of it?
Date	CountOfField2
5/10/1998	7
5/11/1998	5
5/12/1998	2
5/14/1998	1
5/15/1998	1
5/19/1998	1
5/20/1998	1
5/21/1998	1
5/24/1998	2
5/25/1998	1
5/26/1998	2
....
2002
...
R should recognize that some dates are not available...(NA). You can
define start and end date Ok, and frequency= 365 is ok...but is it
possible that recognizes t...
1998 Jun 30
1
Patched Qpopper2.5 release Notification. (fwd)
Hi,
well, swift response!
Qualcomm has a patched qpopper (2.5)
Greetings,
Jan-Philip Velders
<jpv@jvelders.tn.tudelft.nl>
---------- Forwarded message ----------
Date: Mon, 29 Jun 1998 21:43:18 -0700
From: Praveen Yaramada <pyaramad@QUALCOMM.COM>
To: BUGTRAQ@NETSPACE.ORG
Subject: Patched Qpopper2.5 release Notification.
Hello Folks,
        As you are already aware that qpopper 2.41 and prior are vulnerable to
buffer overflow there by causing security breach. A patched qpo...
1998 Oct 07
0
EMERGENCY: User profile for Win98 domain logon lost after upgrade to Oct 5 CVS code
...IBM Laser Printer"
     public = yes
     browseable = yes
     printer name = print01
     path = /tmp
[lexmark]
     printable = yes
     comment = "LexMark Laser Printer"
     public = yes
     browseable = yes
     printer name = print02
     path = /tmp
------- SMB.LOG ------
1998/10/07 08:27:19, 1] smbd/service.c:make_connection(482)
  yyctpa1f (204.50.11.40) connect to service netlogon as user testuser
(uid=1001
, gid=10) (pid 1212)
[1998/10/07 08:27:19, 1] smbd/service.c:make_connection(482)
  yyctpa1f (204.50.11.40) connect to service netlogon as user testuser
(uid=1001...
2010 Aug 01
3
remove extreme values or winsorize – loop - dataframe
Hi everyone!
#I need a loop or a function that creates a X2 variable 
that is X1 without the extreme values (or X1 winsorized) 
by industry and year.
#My reproducible example:
firm<-sort(rep(1:1000,10),decreasing=F)
year<-rep(1998:2007,1000)
industry<-rep(c(rep(1,10),rep(2,10),rep(3,10),rep(4,10),rep(5,10),rep(6,10),rep(7,10),rep(8,10),rep(9,10),
rep(10,10)),1000)
X1<-rnorm(10000)
data<-data.frame(firm, industry,year,X1)
data
The way I?m doing this is very hard. I split my sample by 
industry and year, for each ind...
2006 Nov 23
1
how to loop this?
...uot;1997-11-17", "1997-11-19", "1997-11-22", "1997-11-27", "1997-11-30",
    "1997-12-03", "1997-12-08", "1997-12-12", "1997-12-15", "1997-12-20",
    "1997-12-26", "1997-12-28", "1998-01-01", "1998-01-08", "1998-01-17",
    "1998-01-25", "1998-01-28", "1998-02-06", "1998-02-09", "1998-02-19",
    "1998-02-26", "1998-03-03", "1998-03-14", "1998-03-23", "1998-03-...
1998 Aug 02
0
ipportfw - security
...nning on forwarding ports from an outer firewall/router (connected 
to the Internet) to a host in the DMZ, then on from the DMZ host to the 
inner firewall, and finally from the inner firewall to some host on the 
inside.
Thanks,
Jens
jph@strengur.is
From mail@mail.redhat.com Wed Aug 5 09:48:30 1998
Received: (qmail 795 invoked from network); 5 Aug 1998 07:48:23 -0000
Received: from 3dyn106.delft.casema.net (HELO rosie.BitWizard.nl) (root@195.96.104.106)
  by mail2.redhat.com with SMTP; 5 Aug 1998 07:48:22 -0000
Received: from cave.BitWizard.nl (wolff@cave.BitWizard.nl [130.161.127.248])
	by r...
2005 Oct 18
3
Repeating lines in a data frame
Hello,
I have a much larger dataset that is similar in form to:
 year species length count
 1998       1    150     1
 1998       2    200     1
 1998       3    250     2
 1999       1    150     3
 1999       2    200     4
 1999       3    250     5
 2000       1    150     1
 2000       2    200     1
 2000       3    250     1
 2001       1    150     2
 2001       2    200     3
 2001...
2000 Jul 07
1
reorganizing a data frame
Hi, 
I have what I think is an easy question.
I have a data frame, called stockdata, of stock prices that looks like this:
         date       ticker       close 
 1 01/02/1998    GE       24.667
 2 01/05/1998    GE       25.104
 3 01/06/1998    GE       24.771
 4 01/07/1998    GE       24.979
 5 01/08/1998    GE       24.750
 6 01/02/1998    HIT       71.125
 7 01/05/1998    HIT       72.313
 8 01/06/1998    HIT       72.563
 9 01/02/1998    INTC     36.313
10 01/05/1998...
2013 Jan 02
4
list of matrices
dear useRs,
i have a list containing 16 matrices. i want to calculate  the column mean of each of them.
i tried
 >sr <- lapply(s,function(x) colMeans(x, na.rm=TRUE))
but i am getting the following error
>Error in colMeans(x, na.rm = TRUE) : 'x' must be numeric
can it be done in any other way? and why i am getting this error??
thanks in advance..
elisa 		 	   		  
	[[alternative
1998 Oct 08
0
readbraw vs. readX
...X (pid 33994)
Skipping become_user - already user
unix_clean_name [./PRIVATE/Goyal_Sep98.PRZ]
Got dir cache hit on . PRIVATE -> Private
unix_clean_name [Private/Goyal_Sep98.PRZ]
calling open_file with flags=0x2 flags2=0x0 mode=0664
Allocated new file_fd_struct 0, dev = ffffffff, inode = ffffffff
1998/10/08 13:50:32 axs opened file Private/Goyal_Sep98.PRZ read=Yes
write=Yes (numopen=1 fnum=26)
set_share_mode: Created share record for Private/Goyal_Sep98.PRZ (dev 1
inode 33106898)
set_share_mode: Created share entry for Private/Goyal_Sep98.PRZ with mode
0x22 pid=33994
1998/10/08 13:50:32 Transact...
1998 Jul 08
0
Error connecting Win95 box to Linux.
...ong here?  I'm using
samba-1.9.18p8 on a Linux 2.0.32 box, RedHat 5.0 install.
I can descend into this share from a WinNT box just fine, but get the
following error messages from a Win95 box.
Thank you all in advance,
-Jon Charette
--------- Start log at debug level 4 ----------------------
1998/07/08 13:20:22 Transaction 52 of length 47
switch message SMBgetatr (pid 9125)
chdir to /mnt/disk2
unix_clean_name [./SOUND]
unix_clean_name [SOUND]
stat of SOUND failed (No such file or directory)
1998/07/08 13:20:22 error packet at line 783 cmd=8 (SMBgetatr) eclass=1
ecode=2
error string = No suc...
1998 Oct 29
0
Digest.
Hi,
There have been a bunch of useful submissions for the compare /contrast
thread. 
To reduce the load on your mailbox, they are gathered here in one go...
				Roger. 
Date: Wed, 28 Oct 1998 15:11:37 +0000
From: "David L. Sifry" <dsifry@linuxcare.com>
To: "Matthew S. Crocker" <matthew@crocker.com>
CC: Rob Bringman <rob@trion.com>, linux-security@redhat.com
Subject: [linux-security] Re: compare / contrast of linux fw and others
For an extra module,...
1998 Mar 18
1
Troubles with NT domain logons ?
...t created by samba,
when I tryed to setup NT to domain logon to samba.
Note: I uses unix traditional security in samba. W/o smbpasswd.
I corrected registry on all winXX machines to disable crypt password.
NT - with installed service pack 3.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
03/18/1998 23:08:40 Transaction 21 of length 120
switch message SMBtrans (pid 25561)
chdir to /tmp
trans <\PIPE\LANMAN> data=0 params=36 setup=0
named pipe command on <LANMAN> name
Got API command 104 of form <WrLehDz> <B16BBDz> (tdscnt=0,tpscnt=36,mdrcnt=4200,mprcnt=8)
Doing NetServer...
2006 Nov 22
3
dataframe manipulation
...uot;, "1997-11-17", "1997-11-19", "1997-11-22", "1997-11-27",
"1997-11-30", "1997-12-03", "1997-12-08", "1997-12-12", "1997-12-15",
"1997-12-20", "1997-12-26", "1997-12-28", "1998-01-01", "1998-01-08",
"1998-01-17", "1998-01-25", "1998-01-28", "1998-02-06", "1998-02-09",
"1998-02-19", "1998-02-26", "1998-03-03", "1998-03-14", "1998-03-23",
"1998-03-30"...
2009 Dec 03
4
Two-way/Three-way sum.
Hi R Users,
I'm wondering how can I calculate two (or three) way sum of a variable. A
sample data is:
State Month Year Value
NC Jan 1996 1
NC Jan 1996 2
NC Feb 1997 2
NC Feb 1997 3
NC Mar 1998 3
NC Mar 1998 4
NY Jan 1996 4
NY Jan 1996 5
NY Feb 1997 5
NY Feb 1997 6
NY Mar 1998 6
NY Mar 1998 7
I'm trying to sum up "value" column by State*Month and by State*Month*Year.
Also, I may need to calculate mean value along with "sum".
Any help would be greatly appreciated,...