Displaying 20 results from an estimated 9000 matches similar to: "Help with labeling a page with multiple graphs."
2006 May 24
1
Does R have EGARCH modeling function?
I've downloaded fSeries, but looks like it just has an interface to OX(TM)
Garch Modeling Software,and that OX(TM) software package is not free.
So where can I find an EGARCH function that is truely usable?
Thanks a lot!
[[alternative HTML version deleted]]
2005 May 04
3
Imputation
I have timeseries data for some factors, and some missing values are there in those factors, I want impute those missing values without disturbing the distribution of that factor, and maintaining the correlation with other factors. Pl. suggest me some imputation methods.
I tried some functions in R like aregImpute, transcan. After the imputation I am unable to retrive the data with imputed
2004 Aug 02
4
How to add a common title (or xlab, ylab) for multi-plots in the same window?
Dear R people,
I am using par(mfrow=c()) to plot multi-figures in the same window. And I like
to put a common title (and xlab, ylab) for all of plots. I have already left
some margin by resetting omi values in par() and hided all (xlab, ylab) for
each sub-plot. Could anyone tell me how to do that?
Thanks a lot,
Frank
2005 Mar 27
1
p values when using rlm
R 2.0.1
Linux
I am using rlm() to fit a model, e.g. fit1<-rlm(y~x). My model is more
complex than the one shown.
When I enter summary(fit1)
I get estimates for the model's coefficients along with their SEs, and
t values, but no p values. The p value column is blank.
Similarly, when I enter anova(fit1) I get DF, Sum Sq, Mean Sq, but the
column for F value and Pr(>F) are blank.
Any
2007 Apr 27
1
Write text in the
Hey Felix,
So basically what you want is a figure containing a block of four plots, with a main title for the figure? If that's the case then something like this should work:
# BEGIN CODE #
par(oma=c(0,0,1,0), mfrow=c(2,2))
for(i in 1:4){
plot(NA,xlim=range(0,10),ylim=range(-5,5))
title(paste("Plot ",i,sep=""))
}
par(mfrow=c(1,1), oma=c(0,0,1,0))
mtext("Main
2012 Jul 10
2
how can I show the xlab and ylab information while using layout
hi R-users:
I want to draw three plot into one figure by layout and the script has
been shown below.
But I find R does not show the xlab and ylab information completely as
shown the figure attached.
How can I midify the script.? thank you .
xxlab<-paste(cpmd," (",ro,"%)",sep=" ")
yylab<-paste(rfmd," (",co,"%)",sep=" ")
2006 May 12
4
Title of page with multiple plots
I want to place four plots on a page, and I would like to have all four
plots share a common title. I have tried the following code, but the
title is centered over the fourth graph and not centered across all four
plots. Does anyone have any suggestions?
R 2.1.1
windows xp
oldpar<-par(mfcol =c(1,4),ask=TRUE)
plot(p,varp)
plot(p,SEp)
plot(p,CVp)
plot(p,ppval)
title(paste("P and 95%CI
2007 Jun 07
2
Is there any plan to support HTTP Proxy
Tinc is a great idea but often we sit behind corporate firewall which
also often to only allow traffic to go through HTTP proxy. is there any
plan of tinc to implement the proxy support, then it will truely be
wonderful.
like other through proxy service, one might setup a broker server to
establish an initial connection through proxy and then hand over the
communication to point-to-point, like
2007 Oct 24
2
Graphics - plotting two graphs
Hi,
I wanted to plot 2 lines on a single graph. Each graph has one axis that can be common. The code that I'm using is:
-------------------------------------------------------
par(mfrow=c(1, 1))
x1 <- c(2, 4, 6, 8, 10, 12)
x2 <- c(10, 20, 30, 40, 50, 60)
y1 <- c(10,12,15,22,34,21)
y2 <- c(40, 130, 150, 145, 40, 30)
par(las=1, mar=c(4, 4, 2, 4))
plot.new()
2004 Aug 06
3
wow
massive props to the vorbis and icecast2 people.. this is truely
impressive stuff guys. we're going live with pure icecast2/vorbis
monday. its scary that 56K vorbis sounds almost as good as 128K mp3.
this is a lifesaver as our isp is about to pull the plug for excessive
bandwidth usage :>
--
http://chemlab.org - email shade-pgpkey@chemlab.org for pgp public key
chemlab radio!
2019 Jul 10
3
Python build dependency in LLVM and/or clang?
Am Fr., 5. Juli 2019 um 07:01 Uhr schrieb Joerg Sonnenberger via
llvm-dev <llvm-dev at lists.llvm.org>:
>
> On Fri, Jul 05, 2019 at 10:43:12AM +0000, Simon Tatham via llvm-dev wrote:
> > But before I do that, I wanted to check whether there would be any
> > objection on grounds of build dependencies. Is it acceptable to require Python
> > as part of the normal build
2005 Feb 21
1
uw-imap and gnu-pop3d to dovecot transition/replacement
Hi
I am trying directly to replace old uw-imap + GNU pop3d with Dovecot.
Problems I am having with new (1.0-stable 22.02.2005) are:
- How to get SSL working with new config?
imaps_listen doesn't exist anymore.
cannot add protocol imaps for some reason.
- need to get Dovecot run on another port the test-phase, ie 144 for
imap, 994 for IMAPs
- need to use .mailboxlist (modified the source
2015 Sep 17
2
DEFINE_IDA causing memory leaks? (was Re: [PATCH 1/2] virtio: fix memory leak of virtio ida cache layers)
On Wed, Sep 16, 2015 at 07:29:17PM -0500, Suman Anna wrote:
> The virtio core uses a static ida named virtio_index_ida for
> assigning index numbers to virtio devices during registration.
> The ida core may allocate some internal idr cache layers and
> an ida bitmap upon any ida allocation, and all these layers are
> truely freed only upon the ida destruction. The virtio_index_ida
2015 Sep 17
2
DEFINE_IDA causing memory leaks? (was Re: [PATCH 1/2] virtio: fix memory leak of virtio ida cache layers)
On Wed, Sep 16, 2015 at 07:29:17PM -0500, Suman Anna wrote:
> The virtio core uses a static ida named virtio_index_ida for
> assigning index numbers to virtio devices during registration.
> The ida core may allocate some internal idr cache layers and
> an ida bitmap upon any ida allocation, and all these layers are
> truely freed only upon the ida destruction. The virtio_index_ida
2006 Apr 01
1
A bit OT...but here is a nifty Rails sighting.... ;)
According to arstechnica,
<http://arstechnica.com/reviews/games/forever.ars>Duke Nukem Forever
has been ported to Ruby on Rails and is now rendered with
some kind of magic mishmash of svg-canvas and ajax! This truely is an
example of the incredible power of a web browser. Any hope for getting Mr.
Fowler to add a Recipe for this type of thing in his new book? ;)
-------------- next part
2006 Apr 04
1
how to delete the bar in the right of "filled.contour" map
I did the contour map by "filled contour" and I want to add some points in
this map.
But It cannot be added truely because the bar is in the right.
I want to know how to delete the bar in the right or add the points in
the contour map.
Thanks!
[[alternative HTML version deleted]]
2006 May 18
1
[bug] False debugging with ipconfig
kinit.c contains the following lines before calling ipconfig_main:
#ifdef INI_DEBUG
args[a++] = (char *)"-n";
#endif
In my attempts to debug the NFS mounting, this threw me off for a bit.
(The -n parameter runs a "dry run" and does not actually configure
the network).
Thus, it seems it's actually impossible to debug NFS mounting with the
stock, unpatched klibc. It
2005 Feb 27
1
DIALSTATUS with X100P
I'm having an issue with my current configuration. I have a single
PSTN line connected to an X100P and a couple IAX trunks to NuFone and
VoipJet. When I make an outbound call it doesn't properly detect if
my PSTN line is in use with another call and then overflow to my
outbound IAX connections. I think the root cause is that DIALSTATUS
gets reported as BUSY instead of CHANUNAVAIL. I
2018 Sep 19
1
Textures Twiddling/Swizzling
Thanks for the last info it was truely helpful.
Anyways, I'm currently trying to implement 3D textures into yuzu, as far as
I know they are twiddled in a different manner to 2D textures. Could one of
you guys point me in the right direction? I've been meddling around:
https://cgit.freedesktop.org/mesa/mesa/tree/src/gallium/drivers/nouveau/nv50/nv50_tex.c
but I can't see where the
2014 Oct 22
1
Amazon implements Samba Active Directory in the cloud !
Dan Shearer pointed out the following (thanks Dan):
https://aws.amazon.com/blogs/aws/new-aws-directory-service/
"The New AWS Directory Service
Today we are introducing the AWS Directory Service to address
these challenges! This managed service provides two types of
directories. You can connect to an existing on-premises directory
or you can set up and run a new, Samba-based directory in