Displaying 20 results from an estimated 410 matches for "1984".
Did you mean:
184
2012 Oct 01
3
ffbase, help with %in%
...15 1990-07-15 196 15 248500 6239500
16 1990-07-16 197 15 248500 6239500
17 1990-07-17 198 15 248500 6239500
18 1990-07-18 199 15 248500 6239500
19 1990-07-19 200 15 248500 6239500
20 1990-07-20 201 15 248500 6239500
> fire$fecha[1:20,] [1] "1984-11-08" "1984-11-08" "1984-11-09" "1984-11-09" "1984-11-09"
[6] "1984-11-10" "1984-11-10" "1984-11-11" "1984-11-11" "1984-11-11"
[11] "1984-11-11" "1984-11-11" "1984-11-11" &...
2012 Apr 12
4
Definition of "lag" is opposite in ts and xts objects!
Example:
Will ts objects be obsolete or modified?
> a [,1]
1983 Q1 2.747365190
1983 Q2 2.791594762
1983 Q3 -0.009953715
1983 Q4 -0.015059485
1984 Q1 -1.190061246
1984 Q2 -0.553031799
1984 Q3 0.686874720
1984 Q4 0.953911035> lag(a,4) [,1]
1983 Q1 NA
1983 Q2 NA
1983 Q3 NA
1983 Q4 NA
1984 Q1 2.747365190
1984 Q2 2.791594762
1984 Q3 -0.009953715
1984 Q4 -0.015059485> lag(as.ts(a, st...
2012 Feb 16
3
Converting ts into xts and subsetting
Greetings,
I would like to subset observations in a time series using xts, after
converting from ts to xts.
X=ts(1:100, frequency=12, start=c(1976))
X2=as.xts(X)
X2["1984"]
The output:
Feb 1984 98
Mar 1984 99
Apr 1984 100
What happened to January? The index is always one month off, with
X2["1976-01"] giving me Feb 1976. Should I set the time using something
else than ts?
I know there is the window function, but the xts format is convenient...
2005 Aug 13
1
How to make a lagged variable in panel data?
Suppose we observe N individuals, for each of which we have a
time-series. How do we correctly create a lagged value of the
time-series variable?
As an example, suppose I create:
A <- data.frame(year=rep(c(1980:1984),3),
person= factor(sort(rep(1:3,5))),
wage=c(rnorm(15)))
> A
year person wage
1 1980 1 0.17923212
2 1981 1 0.25610292
3 1982 1 0.50833655
4 1983 1 -0.42448395
5 1984 1 0.49233532
6 1980 2 -0.4...
2003 Aug 30
2
Bug in plot() with POSIX dates (PR#4024)
When I do this (highly simplified example):
plot(as.POSIXct(c("1984-01-01","1984-01-02")), c(1,2), col=2)
I get a partially red (col=2) x-axis between and including the first and last tick marks.
Otherwise ok. Only happens with POSIXct or POSIXlt dates.
Also, POSIX dates cannot be used on the y-axis?
POSIXlt gives an error, and POSIXct is unform...
2012 Mar 09
6
unir 2 dataframe con con igual caso pero distinto valor en igual variable
...Mes Año Nombre Apellido Clase
1 1981 Juan Perez A
2 2 1981 Maria Paz B
2 Pedro García B
3 3 1981 José Lugano C
1 1 1982 José Lugano C
Un extracto de un archivo hijo:
Dia Mes Año Nombre Apellido Clase
1 1 1981 Juan Perez A
3 2 1981 Maria Paz B
1 2 1982 Pedro García B
1 1 1983 José Lugano C
1 2 1984 Juan Paz B
2 2 1985 Maria García B
2 2 1984 Pedro Lugano C
2 2 1984 José Lugano A
2 2 1981 Juan Perez B
2 2 1981 Maria Paz C
2 3 1984 Pedro García A
3 3 1987 José Lugano C
3 3 1990 Juan Paz B
3 3 1993 Maria García B
3 3 1996 Pedro Lugano A
3 4 1999 José Lugano C
3 4 2002 Juan Paz C
4 4 2005 Maria G...
2006 Jan 23
1
exporting dates into Microsoft SQL Server
I am running R 2.1.1 in a Windows XP environment.
I wish to use the sqlSave command to export a
dataframe into Microsoft SQL.
My dataframe is called temp and has 2 ?columns?,
?monthenddate? and ?value?.
Monthenddate is in 'POSIXct', format. (i.e. 'POSIXct',
format: chr "1984-01-31" "1984-01-31" "1984-01-31"
"1984-01-31" ...).
How can I export this dataframe into SQL and have the
format in SQL by one of the ?standard? SQL date
formats?
I am using the following r code:
db <- odbcConnect("testserver")
sqlSave(db, temp)
2009 Nov 18
0
xts timeseries
...quire(quantmod)
USPBS =get(getSymbols("USPBS", src="FRED" ))
USPBS = USPBS['1983-1-1::']
monDMANEMP = Cl(to.monthly(USPBS))
> length(monDMANEMP)
[1] 312
> head(monDMANEMP)
USPBS.Close
Oct 1983 8192
Nov 1983 8231
Dec 1983 8265
Jan 1984 8309
Feb 1984 8344
Mar 1984 8382
symbol = getSymbols("^DJA",from = "1983-01-01",to=Sys.Date())
market = Cl(get(symbol))
monMarket = Cl(to.monthly(market))
> length(monMarket)
[1] 314
> head(monMarket)
market.Close
Oct 1983 494.18
No...
2011 Mar 08
1
rkhunter alert dovecot using port 1984
Hi all,
Debian Lenny, dovecot 1.0.15
My rkhunter script has picked up dovecot using port 1984 temporarily.
When I run it now however, it is gone.
Warning: Network TCP port 1984 is being used by /usr/lib/dovecot/imap.
Possible rootkit: Fuckit Rootkit
Use the 'lsof -i' or 'netstat -an' command to check this.
Does dovecot use this port for any reason? anyone seen this before?...
2012 Feb 22
1
[Bug 1984] New: Add Unix Domain Socket Forwarding
https://bugzilla.mindrot.org/show_bug.cgi?id=1984
Bug #: 1984
Summary: Add Unix Domain Socket Forwarding
Classification: Unclassified
Product: Portable OpenSSH
Version: 5.9p1
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority:...
2015 Apr 11
3
[Bug 89985] New: system video hangs on video switch to fullscreen
...h linux 3.19.3-3-ARCH
nouveau-fw is installed and nouveau.config=NvGrUseFW=1 is in the kernel
parameters.
I logged in via SSH into the blocked machine and dumped dmesg's output, it
produced a 6MiB sized file of only:
[ 432.267634] nouveau E[ PFIFO][0000:01:00.0] PBDMA0: ch 6
[gstglcontext[1984]] subc 0 mthd 0x000c data 0x2001054e
[ 432.267645] nouveau E[ PFIFO][0000:01:00.0] PBDMA0: METHOD
[ 432.267647] nouveau E[ PFIFO][0000:01:00.0] PBDMA0: ch 6
[gstglcontext[1984]] subc 0 mthd 0x000c data 0x2001054e
[ 432.267658] nouveau E[ PFIFO][0000:01:00.0] PBDMA0: METHOD
[ 432.267661] n...
2017 Jul 05
4
Help with reshape/reshape2 needed
....057692308
1957 0.073394495
1966 0.742574257
1961 0.082568807
1964 0.165137615
1965 0.137614679
1959 0.128712871
1968 0.587155963
1969 0.660550459
1970 0.477064220
1971 0.513761468
1973 0.449541284
1974 0.128440367
1968 0.415841584
1977 0.009174312
1979 0.339449541
1981 0.596330275
1982 0.348623853
1984 0.146788991
1986 0.651376147
1959 0.451923077
1965 0.750000000
1962 0.326732673
1964 0.782178218
1970 0.336538462
1975 0.277227723
1978 0.712871287
1957 0.509615385
1960 0.490384615
1961 0.721153846
1966 0.298076923
1969 0.413461538
1971 0.500000000
1972 0.692307692
1974 0.653846154
1984 0.04950495...
2012 Aug 09
4
indexing in data frames
...e to do is perform an operation on each element in "c" by the single element in "b".
So, for example, if I wanted to subtract each element in "c" from the scalar in "b". For example, if i had
> a$b
[1] 1988
[2] 1989
?
&
> a$c
[[1]]
[1] 1985 1982 1984
[[2]]
[1] 1988 1980
?
I'm looking for a result of:
a$new
[[1]]
[1] 3 6 4
[[2]]
[1] 1 9
?
I've tried a few different things, none of which have the desired result. Any help appreciated.
thanks!
jimi adams
Assistant Professor
Department of Sociology
American University
e: jadams at america...
1999 Jan 18
1
Program advice
...a single vector and I can indicate
the index via a second vector. In GLIM, if the second vector is a factor,
a single $GRA Size Year Item instruction will do it with a factor
Example data:
Item Size Year
1 0 1980
1 10 1981
1 14 1982
1 20 1983
1 25 1984
1 30 1985
2 0 1980
2 5 1981
2 6 1982
2 8 1984
3 0 1984
3 2 1985
4 0 1980
4 20 1981
4 30 1982
4 30 1984
4 35 1985
This should produce 4 jagged lines on a plot, some shorter than others...
2001 Sep 25
2
extracting columns from a ts series
Hi All,
I have a time series called 'upwelling', like this:
>upwell
Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov
1984 494.7 303.7 220.8 288.4 188.1 125.5 215.7
1985 56.0 127.4 165.8 189.4 261.6 223.7 186.3 150.2 107.8 120.3 91.1
from 1984 until 2000. How do I could extract, i.e, Jan or Dec columns from
the data? Or how do I could calculate, say, winter upwelling: Dec+Jan+Feb+Mar?
Than...
2011 Nov 19
3
reshape data.frame
...1979 9
10 a 1980 10
11 b 1971 11
12 b 1972 12
13 b 1973 13
14 b 1974 14
15 b 1975 15
16 b 1976 16
17 b 1977 17
18 b 1978 18
19 b 1979 19
20 b 1980 20
21 b 1981 21
22 b 1982 22
23 b 1983 23
24 b 1984 24
25 b 1985 25
and I'd like to reshape it so it is like this:
X.1971 X.1972 X.1973 X.1974 X.1975 X.1976 X.1977 X.1978 X.1979 X.1980
X.1981
a 1 2 3 4 5 6 7 8 9 10
NA
b 11 12 13 14 15 16 17 18 19...
2010 Nov 24
3
Custom ticks on x axis when dates are involved
...internally converted in an integer that represents the number of seconds passed since an origin (i suppose it is 1st of January 1900). I think it would be easier to show you my example what i've done. I would be very happy to find out the correct way of actually doing this.
d <- c("4/6/1984", "9/29/1984", "1/19/1985", "3/27/1986", "10/3/1987", "10/8/1987", "1/28/1988", "12/16/1989", "10/11/1991", "10/5/1992", "11/15/1995", "4/7/1996", "10/3/1997", "2/28/199...
2014 Dec 12
0
CESA-2014:1984 Important CentOS 6 bind Security Update
CentOS Errata and Security Advisory 2014:1984 Important
Upstream details at : https://rhn.redhat.com/errata/RHSA-2014-1984.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
dec983c747ba78c1f5273d05b60aab725325ac891a76d8309b2f2af821adcdd4 bind-9.8.2-0.30.rc1.el6_6.1....
2014 Dec 12
0
CESA-2014:1984 Important CentOS 7 bind Security Update
CentOS Errata and Security Advisory 2014:1984 Important
Upstream details at : https://rhn.redhat.com/errata/RHSA-2014-1984.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
x86_64:
22776e53cafafb80662d364aa4bc0a5549a524f2358a23760935f5144737fb56 bind-9.9.4-14.el7_0.1.x86_...
2014 Dec 12
0
CESA-2014:1984 Important CentOS 5 bind Security Update
CentOS Errata and Security Advisory 2014:1984 Important
Upstream details at : https://rhn.redhat.com/errata/RHSA-2014-1984.html
The following updated files have been uploaded and are currently
syncing to the mirrors: ( sha256sum Filename )
i386:
aa09a433e43bae3c69a2cf72dfdaa5f217977043d91b46502102f1600a3a68fd bind-9.3.6-25.P1.el5_11.2.i3...