An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120809/369937a6/attachment.pl>
help hist some 'x' not counted; maybe 'breaks' do not span range of 'x'
6 messages · aprendiz programa, David L Carlson, Rui Barradas
Use summary(dados[[1]]). The error message is telling you that the data include values outside the 0 to 20 range you have specified. ---------------------------------------------- David L Carlson Associate Professor of Anthropology Texas A&M University College Station, TX 77843-4352
-----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- project.org] On Behalf Of aprendiz programa Sent: Thursday, August 09, 2012 3:13 PM To: r-help at r-project.org Subject: [R] help hist some 'x' not counted; maybe 'breaks' do not span range of 'x' Hello Guys, I would like help in script R when I try to plot the histogram appears the error: Erro em hist.default some 'x' not counted; maybe 'breaks' do not span range of 'x' I using a file with more 1000 datas (vector) hist(dados[[1]], seq(0, 20, 0.5), prob=TRUE, xlab="chuva (mm/dia)",ylab="frequjncia", main="", cex.lab=1.6, cex.sub=3,cex.axis=3,cex.main=6) Please, someone could help me? Thanks Best Regards [[alternative HTML version deleted]]
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120810/65d0eb29/attachment.pl>
Hello, You went from 20 to 1300? What about from 20 to max(dados[[1]])? breaks <- seq(0, max(dados[[1]]), by = 0.5) hist(dados[[1]], breaks = breaks, ...etc...) Hope this helps, Rui Barradas Em 10-08-2012 00:54, aprendiz programa escreveu:
David, I changed the command to 0 to 20 for 0 to 1300 and got no errorbut the graph does not correctly generate, because the size of the x-axis go from 0 to 1300. Help me!!
From: dcarlson at tamu.edu To: aprendizprogram at hotmail.com; r-help at r-project.org Subject: RE: [R] help hist some 'x' not counted; maybe 'breaks' do not span range of 'x' Date: Thu, 9 Aug 2012 15:32:55 -0500 Use summary(dados[[1]]). The error message is telling you that the data include values outside the 0 to 20 range you have specified. ---------------------------------------------- David L Carlson Associate Professor of Anthropology Texas A&M University College Station, TX 77843-4352
-----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- project.org] On Behalf Of aprendiz programa Sent: Thursday, August 09, 2012 3:13 PM To: r-help at r-project.org Subject: [R] help hist some 'x' not counted; maybe 'breaks' do not span range of 'x' Hello Guys, I would like help in script R when I try to plot the histogram appears the error: Erro em hist.default some 'x' not counted; maybe 'breaks' do not span range of 'x' I using a file with more 1000 datas (vector) hist(dados[[1]], seq(0, 20, 0.5), prob=TRUE, xlab="chuva (mm/dia)",ylab="frequjncia", main="", cex.lab=1.6, cex.sub=3,cex.axis=3,cex.main=6) Please, someone could help me? Thanks Best Regards [[alternative HTML version deleted]]
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120810/7e3dd2b8/attachment.pl>
Hello, Post the following: str( dados[[1]] ) summary( dados[[1]] ) Rui Barradas Em 10-08-2012 14:04, aprendiz programa escreveu:
Hi Rui, I did what you suggested and does not return error, but returns a graph wrong with the x-axis with values ?? to 1000. I'm using the data go up to 1000 elementsI thought that was why he gave the error I need help!
Date: Fri, 10 Aug 2012 09:37:13 +0100 From: ruipbarradas at sapo.pt To: aprendizprogram at hotmail.com CC: r-help at r-project.org Subject: Re: [R] help hist some 'x' not counted; maybe 'breaks' do not span range of 'x' Hello, You went from 20 to 1300? What about from 20 to max(dados[[1]])? breaks <- seq(0, max(dados[[1]]), by = 0.5) hist(dados[[1]], breaks = breaks, ...etc...) Hope this helps, Rui Barradas Em 10-08-2012 00:54, aprendiz programa escreveu:
David, I changed the command to 0 to 20 for 0 to 1300 and got no errorbut the graph does not correctly generate, because the size of the x-axis go from 0 to 1300. Help me!!
From: dcarlson at tamu.edu To: aprendizprogram at hotmail.com; r-help at r-project.org Subject: RE: [R] help hist some 'x' not counted; maybe 'breaks' do not span range of 'x' Date: Thu, 9 Aug 2012 15:32:55 -0500 Use summary(dados[[1]]). The error message is telling you that the data include values outside the 0 to 20 range you have specified. ---------------------------------------------- David L Carlson Associate Professor of Anthropology Texas A&M University College Station, TX 77843-4352
-----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r- project.org] On Behalf Of aprendiz programa Sent: Thursday, August 09, 2012 3:13 PM To: r-help at r-project.org Subject: [R] help hist some 'x' not counted; maybe 'breaks' do not span range of 'x' Hello Guys, I would like help in script R when I try to plot the histogram appears the error: Erro em hist.default some 'x' not counted; maybe 'breaks' do not span range of 'x' I using a file with more 1000 datas (vector) hist(dados[[1]], seq(0, 20, 0.5), prob=TRUE, xlab="chuva (mm/dia)",ylab="frequjncia", main="", cex.lab=1.6, cex.sub=3,cex.axis=3,cex.main=6) Please, someone could help me? Thanks Best Regards [[alternative HTML version deleted]]
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.