Displaying 20 results from an estimated 800 matches similar to: "axis labels defaulting to scientific notation"
2010 Jun 16
1
ORAU/ORISE Job Opening - Scientific Programmer/Analyst 2
Oak Ridge Associated Universities is seeking a Scientific
Programmer/Analyst 2 to support the Occupational Exposure and Worker
Health (OEWH) Beryllium Laboratory operation, including a redesign of
the current system and incorporation of R routines into the LPT
analysis, and also to support the data analysis in the Department of
Energy (DOE) Beryllium Registry. This includes expansion of an
2002 Feb 20
6
using GUI
A few days ago I loaded R version 1.4.1 to run on Windows 98 and
haven't been able to find information on the GUI approach in the FAQs, R
Reference Index, or Search Engine . Edit has an item that allows changing
GUI preferences, and the Target path in the icon ends in Rgui.exe, so it
appears that R for Windows does include using the GUI approach.
In S-Plus I wrote a application with
2007 Nov 20
6
How to dereference a pointer to a pointer
Hi. I would like to print out a field of a vnode, but the argument to
the function is of type vnode_t **.
If I set "this->vpp" to arg2 in an entry function to zfs_lookup(), I''d
like to retrieve the value of one of the fields of *(this->vpp) in the
return function. Something like the below (but the syntax below is not
right):
printf("zfs_lookup:
2008 Jan 16
1
Non linear regression with 2 explanatory variables
Hello!
I want to do a non-linear regression with 2 explanatory variables
(something like : length ~ a * time * exp( b* temperature)), having a
data set (length, time, temperature). Which function could I use (I
tried nls but I think it doesn't work)
Thanks a lot!
Janice
2004 Dec 06
1
Gam() function in R
Unfortunately that's not really an R question. I recommend that you read up
on the statistical methods underneath. One that I'd wholeheartedly
recommend is Prof. Harrell's `Regression Modeling Strategies'.
[BTW, there are now two implementations of gam() in R: one in `mgcv', which
is fairly different from that in `gam'. I'm guessing you're referring to
the one
2010 Feb 02
1
[R] Suppressing scientific notation on plot axis tick labels (PR#14202)
On 02/02/2010 6:20 AM, Dimitri Shvorob wrote:
> Ruben Roa has kindly suggested using 'scipen' option - cf.
>
>> fixed notation will be preferred unless it is more than ???scipen??? digits
>> wider.
>
> However,
>
> options(scipen = 50)
> x = c(1e7, 2e7)
> barplot(x)
>
> still does not produce the desired result.
This is strange. I see what
2010 Feb 02
2
Suppressing scientific notation on plot axis tick labels
Is there a better alternative to
x = c(1e7, 2e7)
x.lb = c(0,1e7,2e7)
s.lb = format(x.lb, scientific = FALSE, big.mark = ",")
barplot(x, yaxt = "n", ylab = "")
axis(side = 2, at = x.lb, labels = s.lb)
(I am sure there is a better alternative to line 2 :)).
Thank you.
--
View this message in context:
2003 May 02
2
Suppressing Scientific Notation
R gurus,
Every so often(*) someone asks how to suppress scientific notation in
printing, so I thought I'd give it a shot, but I need some help.
The formatting decision is made(**) on line 286 of src/main/format.c :
if (mF <= *m) { /* IFF it needs less space : "F" (Fixpoint) format */
where mF is the number of characters for "normal" printing and *m is the number
2008 Jul 03
2
Relative Mortality Risk second part
Hi everyone,
We are looking for some data sets working with relative risk mortality.
so, someone know where can I find the data.mgus dataset and the data.mgus?
Using 1384 records from Minnesota.
This data set are used in the :
Robert A. Kyle, Terry M. Therneau, S. Vincent Rajkumar, Janice R. Offord,
Dirk R. Larson, Matthew F. Plevak, and L. Joseph Melton III. A long-term
study of prognosis in
2011 Feb 12
1
existing performance data for on-disk dedup?
Hello. I am looking to see if performance data exists for on-disk
dedup. I am currently in the process of setting up some tests based on
input from Roch, but before I get started, thought I''d ask here.
Thanks for the help,
Janice
2006 Apr 28
1
displaying numbers not in scientific notation
Sorry for asking such a simple question, but I couldn't find the
answer through a search...
How can I get R to show me the values of estimates *not* in scientific notation?
When I use summary() after using lm() I am getting numbers like
4.485107e-01, when what I want to see is 0.4485....
Thanks,
Brian
2009 Dec 15
1
Supressing Scientific Notation
I'm trying to display my deciles without scientific notation, but have not found an option that will allow me to do so. According to web searches, the options(scipen=999) should remove scientific notation, but it seems not too. Does this option work with quantcut function? Is there any other option that can be used? I am using verison 2.10.0.
library(gtools)
library(gdata)
2007 Sep 26
3
Scientific Notation
Dear List:
Below is how I specify an axis:
axis(2, at=c(0.00005, 0.0005))
R displays the numbers in scientific notation. What
argument/parameter should I use to tell R to display the numbers as
specified rather than in scientific notation?
> version
_
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major
2005 Sep 21
2
controlling usage of digits & scientific notation in R plots; postscript margins
Dear R users:
I assigned students to make some graphs and I'm having trouble answering
some questions that they have. We are all working on R 2.1 on Fedora
Core Linux 4 systems.
1. In the plot, the axis is not labeled by "numbers", but rather
scientific notation like "-2e+08" or such. We realize that means
-200,000,000. We want to beautify the plot. We would rather
2010 Sep 27
1
scientific vs. fixed notation in xyplot()
Hi I am using xyplot() to plot on the log scale by using scale=list(log=T)
argument. For example:
xyplot(1:10~1:10, scales=list(log=T))
But the axis labels are printed as scientific notation (10^0.0, etc), instead of
fixed notation. How can I change that to fixed notation?
options(scipen=4) doesn't work on xyplot()
Thanks
John
2011 Oct 14
1
is there an option to "turn off" scientific notation in write.csv
Dear Help-Rs,
I'm working with a file that contains large numbers and I need to export them "as is". for example take:
x <- c(27104010002005,27104020001805,27104090001810,90050013000140,90050013000120)
y <- c(1:5)
df <- data.frame(cbind(x,y))
When I then try a simple:
write.csv(df,file="df.csv")
I get:
x y
1 2.7104E+13 1
2 2.7104E+13 2
3 2.71041E+13 3
2007 Jun 08
2
overplots - fixing scientific vs normal notation in output
Moving from S-plus to R I encountered many great features and a much
more stable system.
Currently, I am left with 2 problems that are handled differently:
1) I did lots of "overplots" in S-Plus using
par(new=T,xaxs='d',yaxs='d') to fix the axes
->What is the workaround in R ?
2) In S-Plus I could fix "scientific notation" or "normal notation" in
2007 Jan 18
1
Changing the contents of installation cd so as to include a new kernel
Hi,
I have CentOS 4.4 with me. I want to change the
default kernel during installation, from 2.6.9 to
2.6.15. I got myself a copy of vmlinuz and initrd.img
from the RHEL AS 4.0 installation cd and copied it as
vmlinuz-rhel and initrd-rhel.img respectively into the
isolinux folder on the CentOS cd. I changed
isolinux.cfg so that it would boot into my kernel. I
then made a fresh new ISO and tried to
2003 Oct 24
1
Scan() question
I am just beginning to use R 1.7.1 on Windows XP and can not do a simple scan of a .txt file with integer data separated by tabs.
First I figured out that I need to open a connection to the file (which isn't mentioned in scan()).
But now when I scan, I get "Read 0 items". What can I do?
Janice
[[alternative HTML version deleted]]
2019 Mar 21
3
prettyNum digits=0 not compatible with scientific notation
R developers,
Seems I get a bad result ("%#4.0-1e" in particular) when trying to use prettyNum digits=0 with scientific notation. I tried on both my Linux box and on an online R evaluator and saw the same problem, so it's not limited to my box at least. I see the problem in both R 3.5.3 and R 3.3.2.
options(scipen=-100)
prettyNum(1, digits=0)
[1] "%#4.0-1e"
prettyNum(2,