Something like this shodld worx. You will need to fiddle around with the
actual co-ordinates etc. I just stuck an arrow in what seemed like a handy
place
On Wed, 10 Jan 2024 at 19:13, Deepankar Basu wrote:
> Hello,
>
> I am drawing contour lines for a function of 2 variables at one level of
> t
Hi,
If I understand your intentions correctly, the simplest way would be to
manually insert arrows using `geom_segment()` with the `arrow` argument:
```
ggplot(data = d1, aes(x=X1,y=X2,z=Z))+
stat_contour(breaks = c(2)) +
stat_contour(data=d2, aes(x=X1,y=X2,z=Z), breaks=c(6)) +
geom_seg
В Wed, 10 Jan 2024 19:13:19 -0500
Deepankar Basu пишет:
> I am drawing contour lines for a function of 2 variables at one level
> of the value of the function and want to include a small arrow in any
> direction of increase of the function. Is there some way to do that?
Can you use the informati
On Wed, 10 Jan 2024 19:13:19 -0500
Deepankar Basu wrote:
> Hello,
>
> I am drawing contour lines for a function of 2 variables at one level
> of the value of the function and want to include a small arrow in any
> direction of increase of the function. Is there some way to do that?
>
> Below
Hello,
I am drawing contour lines for a function of 2 variables at one level of
the value of the function and want to include a small arrow in any
direction of increase of the function. Is there some way to do that?
Below is an example that creates the contour lines. How do I add one small
arrow
5 matches
Mail list logo