Displaying 20 results from an estimated 2000 matches similar to: "Can R do rts (Regular Time Series) like S-Plus?"
2008 Mar 02
3
Need help to locate my mistake
Dear readers
I would like to make General Linear Model (GLM) for the following data set
http://louise.hoffman.googlepages.com/fuel.csv
The code I have written is
fuelData<-read.table('fuel.csv',header=TRUE, sep=',')
n<-dim(fuelData)[1]
xOnes<- matrix(1,nrow=n,ncol=1)
x<-cbind(xOnes,fuelData[,3])
y<-fuelData[,4]
theta<-((t(x)%*%x)^(-1))%*%t(x)%*%y
which gives
2007 Jun 16
3
What is the motivation for choosing nVidia?
Dear developers
I have just noticed your fantastic work, and I am looking forward to
send you dumps of my GeForce 6150, when I get vacation in two weeks.
It is an integrated GPU on my Asus A8N-VM CSM, so I hope it will work.
The reason I post is, I am wondering what the motivation is for doing
nVidia and not ATi?
I have read the "FAQ:Why are you doing this?", but it doesn't
2007 Mar 19
2
What files do I need from Windows?
Dear readers,
I am using Fedora Core Linux 6 and Wine installed from rpm packages.
I haven't got Windows installed, so what files should I copy from a
working Windows? I assume XP is best?
Lots of love,
Louise
2007 Jul 14
1
REnouveau crashed my computer
Hi,
When REnouveau came to "74/75 test_interesting_registers" the CPU used
100% and I could only use the mouse, but not interact witt anything.
What could be wrong? I am using GeForce 6150 and Fedora 7.
Love,
Louise
2007 Jul 12
2
Does Nouveau break the nVidia drivers?
Dear developers
I would like to submit dumps, but I spend ~4 hours last time on
installing the nVidia drivers, and ended up with the livna.org RPM's.
So can I install the Nouveau driver without damaging the nVidia drivers?
I am using Fedora 7 and integrated NVIDIA GeForce 6150. That's the C51
core, right?
Hugs,
Louise
2003 May 21
1
rts conversion to ts?
Hi
Not sure if this is going to the right place…
I am attempting to use a S-Plus workspace that has been saved via the dump
facility. These include a number of commands not recognised by R, namely rts
commands. Is there a way round this by changing these in some way for R’s ts
commands? Any help much appreciated.
Adam
[[alternate HTML version deleted]]
2011 May 09
57
Does wine support rts. program?
anybody tell me does wine supported rts program.. ?
2011 Feb 03
1
Double user name
I have two samba servers running Ubuntu 10.04 Samba Version 3.4.7
One server acts as domain controller and stores user ids in a .tdb
Somehow I've ended up with a duplicate user name.
On the Domain Controller
# pdbedit -w -L|grep debbie
debbie:1005:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:84DEC6FE3B018B0FB977EDDF5009742C:[U
]:LCT-4D4B086F:
On the other Server running winbind I get
#
2019 Feb 24
4
Samba Won't start after upgrading Operating system
I ungraded my Linux Operating system from Ubuntu 16.04 LTS to 8.04 LTS
Samba will not start after an upgrade to 18.04. My samba is running as
an NT style member server server with smbd nmbd and winbindd all
running. None of them will start.
It worked this morning.
This morning it was running Version 4.3.11-Ubuntu
This afternoon after the upgrade it's Version 4.7.6-Ubuntu
The logs in
2012 Oct 12
1
ks.test not working?
Hi,
I am performing GEV analysis on temperature/precipitation data and want to use the ks.boot function but I am unsure of how to implement it using the pgev distribution.
For example:
ks.test(data,pgev,shape,location,scale)
ks.boot(data,(distribution parameters?),alternative="pgev",nboots=1000)
Any advice? Apologies in advance if I have used the wrong email address.
Regards,
Louise
2016 Apr 22
0
Unexpected values obtained when reading in data using ncdf and ncdf4
On Fri, Apr 22, 2016 at 1:32 AM, Louise Mair <louise.mair at slu.se> wrote:
> Dear R Users,
>
> I am encountering a problem when reading nc files into R using the ncdf
> and ncdf4 libraries. The nc files are too large to attach an example (but
> if someone is interested in helping out I could send a file privately via
> an online drive), but the code is basic:
>
?[...]?
2012 Aug 29
3
Bonferroni correction for multiple correlation tests
Please can someone advise me how I can adjust correlations using bonferroni's correction? I am doing manny correlation tests as part of an investigation of the validity/reliability of a psychometric measure.
Help would be so appreciated!
Cheers,
Louise
2007 Oct 10
1
Deleting for() loop in function
Dear UseRs,
I wrote following function in order to solve Data Envelopment Analysis.
Reason for posting is that the function is slow when nrow(dat) is large.
I wonder if other functions could substitute the for() loop in the
code, such as mapply().
Can anybody help to rewrite the dea() function as efficiently as
possible?
The code is as follows:
2012 Aug 13
1
R-help question
Hi there,
I have subscribed to R-help but am not sure how to view or post questions? I think this is the right way.
I am planning on doing a multivariate regression investigating the relationship between depression (a continuous variable) and social support variables (mostly continuous, some categorical) among older people. I have a number of demographic and health-related variables that I am
1999 Mar 23
1
rts, cts, tsplot
Is plot(ts.object) equivalent to the S-Plus ts.plot ?
--
-------------------------------------------------------------------------
Konstantinos E. Vorloou | Tel: +44 (0)191 374 1821
Department of Economics & Finance | Fax: +44 (0)191 374 7289
University of Durham, | email: K.E.Vorloou at durham.ac.uk
23/26 Old Elvet, | or : vorlow at rocketmail.com
2006 Jul 29
1
How to keep permissions from rsync server?
Dear readers,
Does anyone know how I can keep the file permissions on the
destination side when I sync?
This is what I have done so far.
In /etc/rsyncd.conf on the server have I:
-------------------------------------------------------
log file = /var/log/rsyncd.log
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
[server]
path = /
uid = root
gid = root
read only = yes
2018 Mar 06
2
raster time series statistics
Last line in the following (updated) code produces the error
require(raster)
require(rts)
require(stringr)
r <- raster(ncol=100, nrow=100)
values(r) <- runif(ncell(r))
stack(r)->s
r->rs
for(i in 1:23){
rs[]<-r[]*i
addLayer(s,rs)->s
print(nlayers(s))
}
dt<-list(ID=seq(1:24),month=rep(formatC(1:12,flag=0,width=2),2),
year=sort(rep(2016:2017,12)))
2011 Jul 26
1
(no subject)
Hello
I have been trying to figure out how to randomly select a number of records. I have a column "ID" which contains 16 individuals (numbered 1-16), each individual has a few hundred rows of GPS locations associated with it. I am trying to select a random sample of these individuals (with all their associated GPS locations) to run a kernel density analysis on, and need to repeat this
2018 Mar 06
1
raster time series statistics
It works if you use as.Date. But this defeates the purpose for the yearmon notion...
require(raster)
require(rts)
require(stringr)
r <- raster(ncol=100, nrow=100)
values(r) <- runif(ncell(r))
stack(r)->s
r->rs
for(i in 1:23){
rs[]<-r[]*i
addLayer(s,rs)->s
print(nlayers(s))
}
dt<-list(ID=seq(1:24),month=rep(formatC(1:12,flag=0,width=2),2), year=sort(rep(2016:2017,12)))
2011 Jan 27
2
creating categorical frequency tables from continuous data
Hello,
I am working with a dataset which essentially has only one column - a
list of distances in metres, accurate to several decimal places. eg
distance
1000
6403.124
1000
1414.214
1414.214
1000
I want to organise this into a frequency table, grouping into categories
of 0 - 999, 1000 - 1999, 2000-2999 etc. I'd also like the rows where
there are no data points in that category to