> To: FMH
> Cc: r-help@r-project.org
> Sent: Wednesday, September 23, 2009 1:04:21 PM
> Subject: Re: [R] Problem in graph plotting
>
> try this:
>
> plot(tp,dp, type= 'l',ylim=rev(range(dp)))
>
>
> On Wed, Sep 23, 2009 at 7:58 AM, FMH wrote:
>> Dear
tman
> To: FMH
> Cc: r-help@r-project.org
> Sent: Wednesday, September 23, 2009 1:04:21 PM
> Subject: Re: [R] Problem in graph plotting
>
> try this:
>
> plot(tp,dp, type= 'l',ylim=rev(range(dp)))
>
>
> On Wed, Sep 23, 2009 at 7:58 AM, FMH wrote:
&
write the coding?
Thank you
Fir
- Original Message
From: jim holtman
To: FMH
Cc: r-help@r-project.org
Sent: Wednesday, September 23, 2009 1:04:21 PM
Subject: Re: [R] Problem in graph plotting
try this:
plot(tp,dp, type= 'l',ylim=rev(range(dp)))
On Wed, Sep 23, 2009 at 7
Hi,
It's trivial with ggplot2,
library(ggplot2)
qplot(tp,dp, geom="line") + scale_y_reverse()
HTH,
baptiste
2009/9/23 David Winsemius :
>
> On Sep 23, 2009, at 7:58 AM, FMH wrote:
>
>> Dear All,
>>
>> Let:
>> dp: depth of the river
>> tp: temperature with respect to depth
>>
>> We can have a s
On 09/23/2009 09:58 PM, FMH wrote:
Dear All,
Let:
dp: depth of the river
tp: temperature with respect to depth
We can have a simple scatter plot, between depth as y-axis and temperature as
x-axis, by using a plot function as shown below.
#
dp<- c(1,4,3,2,5,7,9,8,9,2)
tp<
On Sep 23, 2009, at 7:58 AM, FMH wrote:
Dear All,
Let:
dp: depth of the river
tp: temperature with respect to depth
We can have a simple scatter plot, between depth as y-axis and
temperature as x-axis, by using a plot function as shown below.
#
dp <- c(1,4,3,2,5,7,9,8,
try this:
plot(tp,dp, type= 'l',ylim=rev(range(dp)))
On Wed, Sep 23, 2009 at 7:58 AM, FMH wrote:
> Dear All,
>
> Let:
> dp: depth of the river
> tp: temperature with respect to depth
>
> We can have a simple scatter plot, between depth as y-axis and temperature as
> x-axis, by using a plot fu
Dear All,
Let:
dp: depth of the river
tp: temperature with respect to depth
We can have a simple scatter plot, between depth as y-axis and temperature as
x-axis, by using a plot function as shown below.
#
dp <- c(1,4,3,2,5,7,9,8,9,2)
tp <- 1:10
plot(tp,dp, type= 'l')
#
8 matches
Mail list logo