similar to: log10(), floor() combo issue?

Displaying 20 results from an estimated 6000 matches similar to: "log10(), floor() combo issue?"

2002 Mar 14
4
KDE frontend (PR#1384)
Full_Name: Egon Willighagen Version: 1.4.x OS: Linux/Solaris Submission from: (NULL) (131.174.179.30) I would like to have an gui for KDE (like gnome). -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe" (in the
2001 Nov 13
2
r-gnome: plots go blank directly after R is finished plotting (PR#1167)
Full_Name: Dirk Eddelbuettel Version: 1.3.1 OS: Linux Submission from: (NULL) (65.184.214.9) [ This bug report has previously been filed as #116701 in the Debian Bug Tracking System. --edd ] From: Egon Willighagen <egonw@sci.kun.nl> To: Debian Bug Tracking System <submit@bugs.debian.org> Subject: r-gnome: plots go blank directly after R is finished plotting Date: Mon, 22 Oct
2002 Oct 15
1
X-Priority: 3 (Normal)
# you need to distinguish datatypes 'character' and 'numeric' bindec <- function( b # a CHARACTER representing a binary number ){ as.i <- as.integer(unlist(strsplit(b,""))) print(as.i) fl <- 2^(floor(round(log10(as.numeric(b)),10)):0) # convert b to numeric print(fl) dec <- sum(as.i * fl) dec } > bindec("100000") [1] 1 0 0 0 0 0 [1] 32 16 8
2011 Aug 28
2
-log10 of 0
Dear R users: Sorry for this simple question: I am writing a function where I would need to pickup p values and make -log10 of it. The p values are from an anova output and sometime it can yield me 0. -log10 (0) [1] Inf I can not replace Inf with 0, which not case here. This is restricting me to go further in the function and out me the error. You help is highly appreciated. Thanks; --
2012 Jun 22
2
Boxplot with Log10 and base-exponent axis
Dear all, I would like to (i) produce boxplot graphs with axis in logarithm in base 10 and (ii) showing the values on the axis in 10^exponent format rather than 10E+exponent. To illustrate with an example, I have some widely spread data that I chart plot using boxplot() [figure on the left]; the log="y" option of boxplot() I obtained the natural logarithm conversion of the data and
2003 Jun 23
4
potential r bug (floor)
Hi, I noticed the following bug while using R version 1.7.0 for Windows (and Linux): > floor(log10(1000)) [1] 2 > Here are my start-up messages: R : Copyright 2003, The R Development Core Team Version 1.7.0 (2003-04-16) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type `license()' or `licence()'
2007 Nov 20
1
xy.coords and log10
Is there a way to teach xy.coords, when given log="xy", or just "x" or "y" separately, to do a decimal log10 instead of the natural log? Cheers, Alexy
2008 Feb 27
1
Warnings generated by log2()/log10() are really large/takes a long time to display
x <- rnorm(1e6); y <- log(x); # or logb(x) or log1p(x) w <- warnings(); print(object.size(w)); ## [1] 480 str(w); $ NaNs produced: language log(x) - attr(*, "dots")= list() - attr(*, "class")= chr "warnings" y <- log2(x); # or log10(x) w <- warnings(); print(object.size(w)); ## [1] 8000536 str(w); ## List of 1 ## $ NaNs produced: language
2007 Aug 07
1
lm( ) for log10-transformed data
Dear help-list, I would like to perform a linear regression on the log10 of the two vectors ov.mag.min and res.600nm. The slope and intercept of the regression I use to plot a wider range of ov.mag.min in a double log plot. For a linear regression on only tow points, wouldn't I expect the results for two.points.min to match pretty exactly res.600nm? It does not seem to be the case here.
2013 Mar 26
6
How do I show real values on a log10 histogram
Hi, I have a histogram with values logged to the base 10 hist(log10(x),breaks=60) How do I show the log values on the x-axis and a second x-axis showing the real values? Thanks -- Shane [[alternative HTML version deleted]]
2002 Apr 02
10
A request
Can we expect to see an R package on Statistical Quality Control in the future like SPLUS? I can't understand why nobody made this package before. ______________________ Indrajit SenGupta Department Of Statistics St. Xavier's College Calcutta University indra_calisto at yahoo.com indrajitsg at vsnl.net ______________________ EC- 195 Salt Lake City, Sector -1 Calcutta 700064 West Bengal
2002 Apr 02
10
A request
Can we expect to see an R package on Statistical Quality Control in the future like SPLUS? I can't understand why nobody made this package before. ______________________ Indrajit SenGupta Department Of Statistics St. Xavier's College Calcutta University indra_calisto at yahoo.com indrajitsg at vsnl.net ______________________ EC- 195 Salt Lake City, Sector -1 Calcutta 700064 West Bengal
2005 Apr 24
5
"Debain" way of installing packages
Hello! I use Debian GNU/Linux at work and I really like apt-get tool. As far as I understand the whole picture, there are now some Debian packages of R packages. Build of Debian packages is done automagically by Perl script. By the way, what is the status of Debianizing R packages? Is it stopped, just holded, ... I don't know so I am asking There is also Bioconductor and I am aware that the
2011 Jun 30
2
volcano plot.r
Hello. My name is Akashah. i work at metabolic laboratory. From my study, i found that volcano plot can help a lot in my section.  i already studied about the volcano plot and get the coding to run in R software, unfortunately, there is may be something wrong with the coding. This is because  no graph appear, but no error (blue color text) was shown on the R console. Below is the coding for
2011 Jun 20
2
(no subject)
HELLO, anybody... could you help me to check the below coding for volcano. what is the mistake? what the plot could not display? # volcano_plot.r # # Author: Amsha Nahid, Jairus Bowne, Gerard Murray # Purpose: Produces a volcano plot # # Input: Data matrix as specified in Data-matrix-format.pdf # Output: Plots log2(fold change) vs log10(t-test P-value) # #
2008 Mar 05
5
nls: different results if applied to normal or linearized data
Dear all, I did a non-linear least square model fit y ~ a * x^b (a) > nls(y ~ a * x^b, start=list(a=1,b=1)) to obtain the coefficients a & b. I did the same with the linearized formula, including a linear model log(y) ~ log(a) + b * log(x) (b) > nls(log10(y) ~ log10(a) + b*log10(x), start=list(a=1,b=1)) (c) > lm(log10(y) ~ log10(x)) I expected coefficient b to be identical
2009 Jul 30
3
Looping through R objects with $ operator and tags
Hi all, Suppose I want to set the values in a column to the log of the values of another column like so: object$LogDist <- log10(object$Distance) How do I loop through the objects if I have object1, object2, etc to perform this function? object1$LogDist <- log10(object1$Distance) object2$LogDist <- log10(object2$Distance) object3$LogDist <- log10(object3$Distance) I was trying to
2007 Nov 14
2
Help with Bartlett's test on linear model
Hi all, I would like to test the homoegeneity of variances between several linear model for some analysis of covariance. It seems that the Bartlett's test is a good test to use but I am having problem using with linear model and I cannot find any examples on the internet. There are some examples for comparisons of variances but not linear models. If I take the hellung data set, which is
2006 Mar 23
2
Default lag.max in ACF
Hi, The default value for lag.max in ACF implementation is 10*log10(N) There several publications recommending setting lag.max to: - N/4 (Box and Jenkins, 1970; Chatfield, 1975; Anderson, 1976; Pankratz, 1983; Davis, 1986; etc.) - sqrt(N)+10 (Cryer, 1986) - 20<=N<=40 (Brockwell and Davis) Why R uses 10*log10(N) as a default? Please, give me a reference to a book or article where the
2012 May 26
1
Kolmogorov-Smirnov test and the plot of max distance between two ecdf curves
Hi all, given this example #start a<-c(0,70,50,100,70,650,1300,6900,1780,4930,1120,700,190,940, 760,100,300,36270,5610,249680,1760,4040,164890,17230,75140,1870,22380,5890,2430) length(a) b<-c(0,0,10,30,50,440,1000,140,70,90,60,60,20,90,180,30,90, 3220,490,20790,290,740,5350,940,3910,0,640,850,260) length(b) out<-ks.test(log10(a+1),log10(b+1)) # max distance D