Re: [R] Problem with data distribution

2022-02-17 Thread Ebert,Timothy Aaron
: Thursday, February 17, 2022 4:54 PM To: Bert Gunter Cc: r-help mailing list Subject: Re: [R] Problem with data distribution [External Email] :) :) On Thu, Feb 17, 2022 at 10:37 PM Bert Gunter wrote: > imo, with such simple data, a plot is mere chartjunk. A simple table(= > the distri

Re: [R] Problem with data distribution

2022-02-17 Thread Neha gupta
gt; (Why would you want to plot a vector of all zeros, btw?) > > > > > > > > > > > > library(dplyr) > > > > > > boxplot(filter(data, bug == 0))# nonsense > > > boxplot(filter(data, bug > 0), range = 0) > > > > > > #

Re: [R] Problem with data distribution

2022-02-17 Thread Neha gupta
: > > That is all the code I have. How can I provide a reproducible code ? > > > > How can I save this result? > > > > On Thu, Feb 17, 2022 at 8:00 PM Ebert,Timothy Aaron > wrote: > > > >> You pipe the filter but do not save the result. A reproducible example &

Re: [R] Problem with data distribution

2022-02-17 Thread Neha gupta
Dear John, thanks a lot for the detailed answer. Yes, I am not an expert in R language and when a problem comes in, I google it or post it on these forums. (I have just a little bit experience of ML in R). On Thu, Feb 17, 2022 at 8:21 PM John Fox wrote: > Dear Nega gupta, > > On 2022-02-17 1:

Re: [R] Problem with data distribution

2022-02-17 Thread John Fox
Dear Nega gupta, In the last point, I meant to say, "Finally, it's better to post to the list in plain-text email, rather than html (as the posting guide suggests)." (I accidentally inserted a "not" in this sentence.) Sorry, John On 2022-02-17 2:21 p.m., John Fox wrote: Dear Nega gupta, O

Re: [R] Problem with data distribution

2022-02-17 Thread John Fox
Dear Neha gupta, I hope that I'm not overstepping my role when I say that googling solutions to specific problems isn't an inefficient way to learn a programming language, and will probably waste your time in the long run. There are many good introductions to R. Best, John On 2022-02-17 2:

Re: [R] Problem with data distribution

2022-02-17 Thread Rui Barradas
e- From: R-help On Behalf Of Neha gupta Sent: Thursday, February 17, 2022 1:55 PM To: r-help mailing list Subject: [R] Problem with data distribution [External Email] Hello everyone I have a dataset with output variable "bug" having the following values (at the bottom of this email). M

Re: [R] Problem with data distribution

2022-02-17 Thread Neha gupta
- > From: R-help On Behalf Of Neha gupta > Sent: Thursday, February 17, 2022 1:55 PM > To: r-help mailing list > Subject: [R] Problem with data distribution > > [External Email] > > Hello everyone > > I have a dataset with output variable "bug" having t

Re: [R] Problem with data distribution

2022-02-17 Thread Ebert,Timothy Aaron
You pipe the filter but do not save the result. A reproducible example might help. Tim -Original Message- From: R-help On Behalf Of Neha gupta Sent: Thursday, February 17, 2022 1:55 PM To: r-help mailing list Subject: [R] Problem with data distribution [External Email] Hello everyone