similar to: Some "new" stuff for hist.R

Displaying 20 results from an estimated 400 matches similar to: "Some "new" stuff for hist.R"

2010 Sep 03
1
safe_memset
samples % lib function 4 0.0525 libdovecot.so.0.0.0 sha1_result_libmysqlcli(..) 7 0.0919 libdovecot.so.0.0.0 io_loop_handler_run 36 0.4729 libdovecot.so.0.0.0 imap_parser_reset 227 2.9817 libdovecot.so.0.0.0 pool_alloconly_unref 7339 96.4009 libdovecot.so.0.0.0 pool_alloconly_clear 7710 3.2463
2005 Dec 11
1
(PR#8376 inconsistency between plot(hist(...)) and hist(...)
On Sun, 11 Dec 2005 clausen at econ.upenn.edu wrote: > Full_Name: Andrew Clausen > Version: 2.1.0 > OS: Debian GNU/Linux > Submission from: (NULL) (71.242.192.73) > > > Hi, > > When I type > > hist(x, freq=F) > > I get a density function, as I expect. However, if I type > > plot(hist(x, freq=F)) > > then I get the same output as if I had
2006 Jan 18
0
asterisk 1.2 bristuff and sms
hi there, I've been using sms a few months ago with * v1.0.9, but now I need it, so I'm testing it out again. But for some reason the SMS receiving doesn't work like it should. It receives the "call" from the telecom operator, and it starts the SMS application, but then i get the following error.. Any idea if this is due to bristuff or my implementation of SMS ? (I used
2012 Sep 14
1
How to specify minimum and maximum x-axis value in logi.hist.plot?
Hi guys, How could I specify minimum and maximum x-axis values in logi.hist.plot? My code is something like this: plot(mydata$Temperature,mydata$Mortality, ,xlab="Temperature",ylab="Probability of mortality") curve(predict(temp.glm,data.frame(Temperature=x),type="resp"),add=TRUE, col="red") points(mydata$Temperature,fitted(temp.glm),pch=20)
2008 Jan 30
1
"hist" combines two lowest categories -- is there a workaround?
When preparing a series of histograms I found that hist was combining the two lowest categories or bins, 1 and 2. Specifying breaks, as illustrated below, resulted in the correct histogram: values <- sample(10,500,replace=TRUE) hist(values) hist(values,breaks = 0:10) Apparently, the number of values strictly less than 1 is shown in the first bin (and since none is less than 1,
2003 Jun 17
1
hist density...
Hi! Do not understand following behavior. > summary(test$dif) Min. 1st Qu. Median Mean 3rd Qu. Max. 0.7389 0.9713 0.9850 0.9818 1.0000 1.0000 length(test$dif) [1] 85879 tmp <- hist(test$dif,breaks=100,freq=FALSE) The density on the Y axis in the plot are in the range 0-200. Thought that the density should be in the range 0-1 (something like
2010 Jan 28
1
hist - unevenly spaced bars
I am sure this is trivial, but I cannot solve it. I make a histogram. There are 5 categories "1",...,"5" and 80 values and the histogram does not evenly space the bars. Bars "1" and "2" have no space between them and the rest are evenly spaced. How can I get all bars evenly spaced? The code: > Q5 [1] "4" "4" "4"
2006 May 06
0
'col'-parameter in 'hist.POSIXt'
Hi guys. The 'col'-parameter in the 'hist'-method for the classes 'POSIXt' and 'date' does not perform as it does in the default 'hist'-method. Unfortunately, it does not only change the filling color of the boxes, but also the color of the axislines. [Using 'graphics'-package version 2.2.0] Examples: # with POSIXct-object hist(.leap.seconds,
2012 Dec 02
0
superimpose density line over hist
>>>>> "Romain" == Romain Francois <[hidden email]> >>>>> on Tue, 13 Dec 2005 15:40:59 +0100 writes: ........ Romain> A few comments : Romain> - your code should be reproductible, otherwise it is useless. (that Romain> recommandation is on the posting guide) Romain> - that question is a top ten question
2007 Oct 15
0
oanda and yahoo get.hist.quote
Hello Alexander I doubt that such an analyis is very useful as the data is not sampled synchronously (equity close in the US for ^gspc and even that is not always at the same time, some average price from Oanda data). Also fx data from others sources as suggested in another mail on this list would not really help with this unless it is really sampled at exactly the same times as the equity
2010 Jan 26
0
newb question: chron and hist()
Hi all, I'm just getting started in R so bear with my newbness. I am trying to create a very simple histogram of logins by time, with data coming in from a MYSQL query. the raw data looks like this: "id" "user_id" "experience_given" "created_at" "ip_aton" "1" XXXXXXX 2445626 0 "2010-01-21 00:00:01" 1123632036 "2"
2011 Dec 07
2
Hist and extra space
Hi everyone. I have an histogram like this one: http://imageshack.us/photo/my-images/442/dfsdfsdj.jpg/ I would like to remove the extra space under the histogram so it "touch" the x axis. Is it possible? Here's my code. hist(X, freq = F, col = 'gray', axes = FALSE) abline(v = cyano_euk_min, col = 'red', lty = 3, lw = 2) abline(v = cyano_euk_max, col =
2012 Jun 15
1
some help to improve "hist to plot relative frequencies"
Dear Researches, sorry for disturb. I wish to improve my figure in R plotting the relative frequencies of my data set. library(lattice) a <- c(0,0,0,1,1,2,4,5,6,7,7,7,7,7,8,8,8,8,9,9,9,9,10,10,11) histogram(a, xlab="myData") what i wish to do is: 1) invert the order of X and Y (eg: Precent of Total on X-axis and "MyData" on X-axis) 2) plot not the bar of histogram but a
2005 Jan 05
1
hist.POSIXt filled bars - axis color changes
Hi all, I'm plotting a histogram of dates and would like to shade the bars, e.g. hist(.leap.seconds,"years",col='gray',freq=T) -but the axis color also changes, how do I prevent that? thx in advance Janus [[alternative HTML version deleted]]
1999 Jul 27
1
R hangs when hist() gets vector with a single value
Hi, I'm not sure if this is a bug or due to my ignorance of R syntax. I'm using hist() to plot a sample set of data, some sets contain the same value (i.e. 3000, 3000, 3000, 3000). I find that hist() hangs when It gets to sets with a single value. ....help ? ...victor -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list --
1997 Sep 10
1
R-alpha: hist()
If you try hist(rnorm(100),lwd=2) with a recent snapshot, you get the exact opposite effect of what was earlier argued to be desirable in plots: you get fat axes and thin bar outlines. The cause is plain to see, at the end of 'hist': title(main = main, xlab = xlab, ylab = ylab, ...) if (axes) { axis(1, ...) axis(2, ...) }
1998 Jan 07
0
hist(.) -- S compatibility : [a,b) versus (a,b] and ....
Looking at Albrech Gebhardt's bug report to R-help (Dec.23) and proposal for improvement, I've been also trying several examples and comparing results with S-plus. Note that we have decided to NOT be fully compatible to S with our hist(.) function since we found S to be really `wrong' and `unuseful': S: - The value returned by hist(.) depends on plot=T or plot=F R: - We return a
1998 Dec 23
0
hist(1) results in a segmentation fault (at least on my machine) (PR#86)
I've fixed hist.default(); the case for hist(0) and hist(-1) also needed consideration. Here is the patch I've committed: cvs diff -bw -r1.2.2.1 src/library/base/R/hist.R diff -b -w -r1.2.2.1 -r1.2.2.4 16,18c16,18 < use.br <- !missing(breaks) && length(breaks) > 1 < breaks <- < if(use.br) sort(breaks) --- > use.br <- !missing(breaks)
2001 May 24
1
Problem with hist(x, prob=T) (PR#947)
Full_Name: Roger Peng Version: 1.2.3 OS: Linux Submission from: (NULL) (128.97.86.109) In R version 1.2.3, the hist command does not respond to the probability=TRUE parameter. So hist(x, probability=FALSE) and hist(x, probability=TRUE) produce the same (graphical) output. -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read
2003 Sep 18
2
hist will not use parameter xaxs (PR#4219)
Full_Name: Mark Wall Version: 1.6.0 OS: linux Submission from: (NULL) (63.251.119.254) I want to plot a histogram of a *subset* of some data: >t = c(0:9) >hist(t,right=FALSE,breaks=10,xlim=c(0,5),xaxs="i") This means I should plot a histogram from 0 to 5 with breaks at 1,2,3,4. This should produce exactly 5 bars of frequency=1. Instead I get 5 and 1/4 bars. I do not want the