Displaying 20 results from an estimated 400 matches similar to: "Shaded area"
2023 Mar 01
1
Shaded area
Hallo
Excel attachment is not allowed here, but shading area is answered many times elsewhere. Use something like . "shading area r" in google.
See eg.
https://www.geeksforgeeks.org/how-to-shade-a-graph-in-r/
Cheers Petr
-----Original Message-----
From: R-help <r-help-bounces at r-project.org> On Behalf Of George Brida
Sent: Wednesday, March 1, 2023 3:21 PM
To: r-help at
2023 Mar 03
1
Shaded area
As Peter says, the list is very cautious about what types of files it
allows. A handy way to supply some sample data is the dput() function. In
the case of a large dataset something like dput(head(mydata, 100)) should
supply the data we need. Just do dput(mydata) where *mydata* is your data.
Copy the output and paste it here.
On Wed, 1 Mar 2023 at 09:58, PIKAL Petr <petr.pikal at
2023 Mar 21
1
Rprofile.site and automatic installation of missing packages
On 21/03/2023 9:58 a.m., PIKAL Petr wrote:
> Hallo Duncan
>
> Tested but does not work so something other must be wrong.
>
> R version 4.2.2.
>> installed.packages()[,"Package"]
> base boot class cluster codetools compiler datasets foreign graphics grDevices grid KernSmooth
2023 Jul 25
2
Seeking Assistance: Plotting Sea Current Vectors in R
Dear Rcommunity,
I hope this email finds you well. I am writing to seek your assistance with
a data visualization problem I am facing while working with R.
Problem Description:
I have a dataframe named "df" containing the following columns:
"longitude", "latitude", "sea_currents_mag", and "sea_currents_direction".
The dataframe includes sea
2023 Mar 21
2
Rprofile.site and automatic installation of missing packages
?Startup says: "Note that when the site and user profile files are
sourced only the base package is loaded, so objects in other packages
need to be referred to by e.g. utils::dump.frames or after explicitly
loading the package concerned."
So you need utils::installed.packages and utils::install.packages .
Duncan Murdoch
On 21/03/2023 8:04 a.m., PIKAL Petr wrote:
> Dear all.
2023 Jul 07
1
Plotting factors in graph panel
Thanks! You are correct, the graphs look very similar, except ggplot is
scaling the text font to make it more readable. Is there a way to scale
down the x-axis labels, so they are readable?
On Fri, 7 Jul 2023 at 12:02, PIKAL Petr <petr.pikal at precheza.cz> wrote:
> Hallo Anupam
>
> I do not see much difference in ggplot or lattice, they seems to me
> provide almost identical
2008 Sep 07
1
run optim() on a list
Hi,
I am at the end of my wit to figure out how to run the optim function on
a list.
Basically, I have a data set of three columns as "Site", "Pool" and
"Positivity" ( the full data set is copied at the end). I want to run
the maximal likelihood estimation separately on subsets split by "Site"
data<-read.table(...)
2007 Jun 25
1
Focus problem for shaded windows
Hi,
today, I noticed a problem in focus handling for shaded windows which is
pretty easy to reproduce:
- Disable "Click to focus"
- Shade a window
- Hover another window
- Hover back to the window frame of the shaded window
- Press Ctrl+Alt+S
Expected behaviour would be that the shaded window is unshaded. What
happens is that the last active window is shaded.
I investigated this a
2007 Nov 26
1
[PATCH] Don't draw shaded windows about to be destroyed
---
src/paint.c | 14 ++++++++++++--
1 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/paint.c b/src/paint.c
index 00cbf73..4ddd332 100644
--- a/src/paint.c
+++ b/src/paint.c
@@ -193,7 +193,12 @@ paintOutputRegion (CompScreen *screen,
if (w->destroyed)
continue;
- if (!w->shaded)
+ if (w->shaded)
+ {
+ if (w->id < 2)
+ continue;
+ }
+ else
2012 Jan 27
2
Placing a Shaded Box on a Plot
Hello,
I would like to place shaded boxes on different areas of a
phylogenetic tree plot. Since I can not determine how to find axes on
the phylogenetic tree plot I am not able to place the box over certain
areas. Below is example code for the shaded box that I have tried to
use, and the first four values specify the position.
rect(110, 400, 135, 450, col="grey",
2009 Apr 22
4
plot confidence intervals as shaded band
Hi,
does anyone know how do I plot confidence intervals as a shaded band around a curve, rather than as errors bars?
many thanks,
ulisses.
[[alternative HTML version deleted]]
2009 Aug 13
3
Plotting shaded areas
Hi
I would like to plot the variation of some mean values with time,
and have the standard deviation around the mean shaded on the plot.
I could not find a way to have the shaded area on the curve with the
default R commands,
do I need a special package to do that?
Or any idea of a way with the default R commands?
Many thanks
Thomas
--
Thomas Loridan
King's College email: thomas.loridan
2007 Aug 06
1
Focus problem for shaded windows
>> today, I noticed a problem in focus handling for shaded windows which is
>> pretty easy to reproduce:
>>
>> - Disable "Click to focus"
>> - Shade a window
>> - Hover another window
>> - Hover back to the window frame of the shaded window
>> - Press Ctrl+Alt+S
>>
>> Expected behaviour would be that the shaded window is
2006 Feb 22
1
shaded timeseries plot
Dear list members,
I would like to plot a time series, with grayshaded background in time
phases were the value of the timeseries exceeds the mean value. For
example, if the temperature from 1995-1998 exeeds the mean value between
1980 and 2005, the background in the plot from 1995-1998 shall be shaded.
Can anybody help me?
Thanks
Thomas H.
2011 Aug 08
2
confidence interval as shaded band (lme)
Hi all,
I?m trying to plot confidence intervals for the fitted values I get with my
lme model in R.
Is there any way I can plot this in the form of a shaded band, like the
output of geom_smooth() in ggplot2 package. ggplot2 seems to use only lm,
glm, gam, loess and rlm as smoothing methods.
Any advice on the functions I should use to accomplish this will be very
helpful.
Thank you very much.
2009 Mar 19
0
Possible bug in charting: shaded region? (quantmod)
Dear Jeff and all,
I think there is bug in plotting shaded regions: the region is one bar off on the left side. Can somebody please confirm this?
By the way, I like this quantmod package a lot! Thanks for the great work!
Regards,
--Chang Lin
Sent from my Verizon Wireless BlackBerry
2007 Nov 26
0
[PATCH] Update client list when destroying shaded windows
---
src/window.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/window.c b/src/window.c
index 568373d..2133aed 100644
--- a/src/window.c
+++ b/src/window.c
@@ -2227,6 +2227,11 @@ destroyWindow (CompWindow *w)
w->id = 1;
w->mapNum = 0;
+ if (w->shaded)
+ {
+ updateClientListForScreen (w->screen);
+ }
+
w->destroyRefCnt--;
2003 Jul 22
3
curves with shaded areas?
Hi,
I want to make a plot with abline where the area below or above the
curve is shaded. I can't find any documentation on that. Can anybody
help me with that?
thanks, Juffi
2008 Feb 12
2
shaded area graph and extra plot
R-help,
I'm using the code below to plot a shaded area graph.
At the same time I want to plot a second series on the y-axis (from
par(new=T) on)
but as the two series have different x-axis range (first 1994:2007 and
second 1996:2007)
the corresponding x's do not match.
How can this be sorted out?
Thanks in advance
#############################################
plot.new()
2008 Aug 15
0
simple shaded rectangle overlay on plots
Hi,
I'm sure this is pretty straightforward, but I cant seem to figure it
out after playing around with grid, and a number of other packages for
graphing
I have data of the following type (much larger of course, and in this
case is named "Medoid4"). The first column defines the x-axis, while
as each other column is individual y-axes in different plots
gene1 gene2 gene3
4