s-news
[Top] [All Lists]

Re:

To: jingshan zhang <jszhang@stat.rutgers.edu>, "'s-news@lists.biostat.wustl.edu'" <s-news@lists.biostat.wustl.edu>
Subject: Re:
From: Leonid Gibiansky <lgibiansky@emmes.com>
Date: Thu, 29 Nov 2001 14:31:37 -0500
In-reply-to: <Pine.SOL.4.10.10111291245350.26525-100000@stat.rutgers.edu >
References: <58CAB2332C0DD511BC7900A0C9EA316D428C27@DASMTYJQF009>
With
par(mfrow=c(1,2),fty="s")
plot(1:5,1:5)
plot(5:1,1:5)
Plots are drawn on top of each other. Try
par(mfrow=c(1,2),pty="s")
plot(1:5,1:5)
plot(5:1,1:5)
instead (each plot will be square shaped, is this what you would like to achieve ?)
Leonid

At 01:50 PM 11/29/01 -0500, jingshan zhang wrote:
>Dear S-users:
>
>I am using Splus 2000, Professional edition, release 3.
>When I run the following steps:
>par(mfrow=c(1,2),fty="s")
>plot(1:5,1:5)
>plot(1:5,1:5)
>
>Splus only plot the second graph on the second place.
>Remark: "fty" is used here to create square-shaped plots.
>
>My guess is either that mfrow and fty cannot be used simultaneously,
>or there are some limitation imposed on the use of "fty".
>Can any of you give me some idea what is going on here?
>Thanks in advance,
>
>jingshan
>
>---------------------------------------------------------------------
>This message was distributed by s-news@lists.biostat.wustl.edu. To
>unsubscribe send e-mail to s-news-request@lists.biostat.wustl.edu with
>the BODY of the message: unsubscribe s-news
>
<Prev in Thread] Current Thread [Next in Thread>