Displaying 20 results from an estimated 2000 matches similar to: "copy or save of plots (PR#1507)"
2002 May 03
0
copy or save to metafile from graphics device shrinks plots (PR#1507)
Full_Name: Drew Tyre
Version: 1.4.0
OS: Win 2000
Submission from: (NULL) (140.253.74.225)
When creating a rather complex plot, the resulting figures 'shrink' when either
copied to the clipboard or saved as a metafile using the GUI menu. Also saving
as postscript or pdf causes the same problem, as does printing the figure
directly from the graphics window. Only the figure areas shrink,
2002 Oct 16
1
FIXED: error in make pkg-...
Sorry, spoke too quickly!
The problem was caused by my editing the MkRules file with an editor that
replaces tabs with spaces. Make evidently requires that all lines start with
a tab (see http://www.delorie.com/djgpp/v2faq/faq22_17.html). Perhaps worth
warning windoze users like myself of such perils in readme.packages or
somewhere similar!
Now I have a new problem, but it looks fixable.
2001 Jan 30
1
screen can't go back to log="y" plot (PR#831)
[I have abbreviated the subject as jitterbug has been having probems
with long subjects.]
The issue here is that one cannot mix log/non-log axes in the calls to
screen(), as the appropriate par() parameter is read-only, but the
meaning of yaxp depends on it. But beyond that you can't set
x/yaxp for log axes.
You should be able to do this: you can in the S original.
A simpler version:
plot
2010 Oct 11
2
(senza oggetto)
? stato filtrato un testo allegato il cui set di caratteri non era
indicato...
Nome: non disponibile
URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20101011/7fd9c9d5/attachment.pl>
2000 Jun 02
3
graphical parameters in plot
I'm using plot to make a simple plot but I want to control where
the tick marks go on bot axes. The graphical parameters xaxp and
yaxp seem to be ignored by the plot function so I tried setting them
using
op <- par(no.readonly=T)
par(xaxp=c(-2.4,-2.2,5), yaxp=c(-2500,10000,6))
plot(...)
par(op)
but they are still ignored.
Next I tried to use the axis function as follows
op <-
2002 Jun 11
1
R 1.5.0: axis() does not honor the xaxp argument (PR#1654)
----------------------- transcript --------------------------
$ R --vanilla
R : Copyright 2002, The R Development Core Team
Version 1.5.0 (2002-04-29)
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type `license()' or `licence()' for distribution details.
R is a collaborative project with many contributors.
Type
2013 Jan 08
4
error in a abline loop
Hello
I have data of body length and body weight of people of different skin colors.
I tried to write a code to plot body length and body weight according
to the skin colors.
(Thanks for Petr's advice so far.)
A loop is used but an error shows up in the following code.
It says:
unexpected '}' in
"
2003 Jun 19
3
Background color(s) for groupedData plot
I've been using par() to check the graphics parameters
associated with both plot(<fitted linear model>) and
plot(<grouped data object>). AFAIK the only differences
are in the $cxy, $usr, $xaxp, and $yaxp parameters but
the background color for the grouped data plot is grey
while the linear model plot has a white background.
When I've tried par(bg = "white") prior to
2010 Jun 13
1
Break in the y-axis
Hello all,
I have been having trouble getting a break in my y-axis. All of my data
points are up around 100-200, but the graph has to start at zero, so i would
like to remove all the white space using a break symbol. I have been able
to get the break and labels to be correct, however, I can't seem to get the
data to match the axis anymore. I must be using the axis.break() in plotrix
2005 Oct 08
1
how to control ticks in plots with yasp or xasp
Hi,
A few times I tried to control the number and position of tick marks
in plots with the yasp or xasp parameters. For example, a y axis was
drawn by default with tick marks at 0, 20, 40, 80 and 100. I tried to
get tick marks every 10 by adding
yasp=(0, 100, 10)
but this had no effect at all. I know I can draw the axis and tick
marks manually, but often this simple option would suffice
2010 Jun 05
1
Error Bar Issues
Hello all,
I am an undergraduate student who is having syntax issues trying to get
error bars on my graph.
This is the data, which I assigned the name "Saline" to.
Time Average SEM
1 -20 0.000000 0.0000000
2
3 30 0.000000 0.0000000
4 45 3.227902 0.7462524
5 60 5.066664 1.1623944
6 80 6.107491 1.5027762
7 110
2001 May 29
2
format for tick labels
Running R 1.2.3, Windows 98
I checked the archives, and I couldn't find anything pertaining to this:
How do I control format (scientific notation versus decimal, e.g.) on tick
labels?
TIA,
Henry
Dr. M. Henry H. Stevens
Postdoctoral Associate
Department of Ecology, Evolution, & Natural Resources
14 College Farm Road
Cook College, Rutgers University
New Brunswick, NJ 08901-8551
email:
2007 Jun 15
2
converting character strings to numbers
I have a comma delimited text file in which many columns of numbers are
also quoted and have commas as well as decimals. I was surprised to find
read.csv() didn't import this seamlessly, even after messing around with
the colClasses argument. I did find a solution to convert the character
strings after reading them in, but wonder if there isn't a better one I
overlooked.
test =
2002 Mar 10
1
xaxp and yaxp
Hello,
I'm new to R, and I'm trying to set the number of tickmarks for a plot
using xaxp, but R seems to ignore this setting completely. Maybe you've
an idea what I'm doing wrong. I'm using R 1.4.1, and here's hat I'm
doing:
> d[,'seq']
[1] 28913 16323 13922 6237 4257 3881 4100 3781 2694 2064 1769
1550
[13] 1539 480
>
2007 Jun 19
4
plot only x- and y-axis with origin, no box()
hi all,
I'm trying for quite some time to have an x- and y-axis, but no entire box.
>plot(..,axes=F)
>axis(1)
>axis(2)
Gives this, but their axes do not go to the origin.
Quite a number of people find this gap between the two axes disturbing.
Has anyone an idea how to let these axes go to the origin?
thank you in advance
[[alternative HTML version deleted]]
1999 Oct 22
1
par(uin)
Hi,
I've been trying to use several plotting routings that make use of
S's par("uin"), the number of user units per inch. For the moment I've
substituted all of the occurences of this with
par.uin _ function()
(par("fin") / c( diff(par("xaxp")[1:2]),diff(par("yaxp")[1:2])))
This seems to work fine for my needs.
-Greg
2012 Mar 31
2
unable to move temporary installation
Hi all,
I'm having a strange error that prevents me from installing new packages,
or updating packages after reinstalling. The error message is
Warning: unable to move temporary installation ‘C:\Program
Files\R\R-2.14.2\library\file15045004ac2\sandwich’ to ‘C:\Program
Files\R\R-2.14.2\library\sandwich’
for one of the packages that is failing to install/update. This error
started happening
2009 Apr 24
3
Text Contrast in a Plot
Hi List,
I would appreciate any suggestion on how can I make a text I’ve inserted in
a plot show some contrast? With this I mean that I have a white text on a
plot and I would like to make a tiny border around it in black, so even
being small sized and the entire graphic being small in the text page I’ll
insert it. It will be visible.
Well I tried inserting a box() function inside the text()
2002 Oct 16
0
error in make pkg-...
Hi All,
I am trying to build a couple of packages from source, one of my own and
others. I have had this working under R1.5.0, now trying to set up on a new
machine under R1.6.0. Starting from various places, I am getting an error in
MkRules that I do not understand.
C:\PROGRA~1\R\rw1060\src\gnuwin32>make libR.a libRblas.a
MkRules:91: *** missing separator. Stop.
The example is from the
Control statements with condition with greater than one should give error (not just warning) [PATCH]
2017 Mar 03
2
Control statements with condition with greater than one should give error (not just warning) [PATCH]
I'd like to propose that the whenever the length of condition passed
to an if or a while statement differs from one, an error is produced
rather than just a warning as today:
> x <- 1:2
> if (x == 1) message("x == 1")
x == 1
Warning message:
In if (x == 1) message("x == 1") :
the condition has length > 1 and only the first element will be used
There are