Re: [R] R-help Digest, Vol 255, Issue 17

2024-05-21 Thread Michael L Friendly
You might be interested in the `Rdatasets` package, https://vincentarelbundock.github.io/Rdatasets/ which lists over 2200 datasets from various packages. What is the context of the `lottery` dataset. I seem to recall smth to do with the NJ Lottery -Michael 1. Availability of Sdatasets (Avr

Re: [R] R-help Digest, Vol 250, Issue 13

2023-12-15 Thread Karl Ropkins
Kevin, Maybe also look at what air quality monitoring is being done in area. https://cran.r-project.org/web/packages/RAQSAPI/vignettes/RAQSAPIvignette.html Depends what and how near, but might be something relevant there? Karl Dr Karl Ropkins Transport Studies | Environment | University of Leeds

Re: [R] R-help Digest, Vol 236, Issue 25

2022-10-27 Thread Thomas Subia
Paul wrote: " Is there any package besides fitdistrplus that does allow automatic distribution fitting?" Automatic distribution fitting can be done using Minitab. Minitab will try and fit your dataset against 14 distributions. It has the option of using a Box-Cox or a Johnson methods to transform

Re: [R] R-help Digest, Vol 217, Issue 25

2021-03-25 Thread phil
Thank you, Messrs Barradas and Gross, for your very helpful advice. Philip Message: 21 Date: Wed, 24 Mar 2021 22:41:25 -0400 From: "Avi Gross" To: Subject: Re: [R] Including a ggplot call with a conditional geom in a function Message-ID: <07e801d72120$59e5c720$0db15560$@verizon.net>

Re: [R] R-help Digest, Vol 217, Issue 20

2021-03-21 Thread Bert Gunter
... or a George Box (I believe) said: The crucial "Declaration of Independence." Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sat, Mar 20, 2021 at 4:25 PM J

Re: [R] R-help Digest, Vol 217, Issue 20

2021-03-20 Thread John Maindonald
No, it is not distribution free. Independent random sampling is assumed. That is a non-trivial assumption, and one that is very often not true or not strictly true. John Maindonald email: john.maindon...@anu.edu.au On 21/03/2021, at 00:00, r-hel

Re: [R] R-help Digest, Vol 212, Issue 12

2020-10-14 Thread Dan Ryan
Dear Frauke, Thank you very much for taking the time to respond. You explanation was very helpful, and I now have that part figured out! Best Wishes, Dan Frauke Message: 3 Date: Mon, 12 Oct 2020 08:33:44 +0200 (CEST) From: =?UTF-8?Q?Frauke_G=C3=BCnther?= To: "r-help@r-project.org" Cc: Will

Re: [R] R-help Digest, Vol 212, Issue 4

2020-10-06 Thread Avi Gross via R-help
yet another C function for speed. -Original Message- From: R-help On Behalf Of Izmirlian, Grant (NIH/NCI) [E] via R-help Sent: Monday, October 5, 2020 1:06 PM To: 'r-help@r-project.org' Subject: Re: [R] R-help Digest, Vol 212, Issue 4 Hi -- there are lots of replies --I hav

Re: [R] R-help Digest, Vol 212, Issue 4

2020-10-05 Thread Izmirlian, Grant (NIH/NCI) [E] via R-help
Hi -- there are lots of replies --I have not read them all, if someone else suggested this, sorry for duplication. This is similar to the suggestion using mapply, but not specific to matrices. In fact it's a kludge that applies to many settings. You 'sapply' over the index 1:2, and pass a, b as

Re: [R] R-help Digest, Vol 206, Issue 25

2020-04-29 Thread David Duffy
I don't think anyone responded last week. > Using the mice package, I have created multiple imputed datasets to deal > with missing data. I am looking for an example of the R code to use in > order to analyze the set of imputed datasets using tetrachoric correlations > in such a way that after poo

Re: [R] R-help Digest, Vol 203, Issue 8

2020-01-10 Thread Rui Barradas
Hello, And there's also # # library(caTools) # Author(s) # Jarek Tuszynski # # Original trapz <- function(x, y){ idx = 2:length(x) return(as.double( (x[idx] - x[idx-1]) %*% (y[idx] + y[idx-1]) ) / 2) } # Modified by me, input is x, f(x) trapzf <- function(x, FUN) trapz(x, FUN(x)) # Ca

Re: [R] R-help Digest, Vol 203, Issue 8

2020-01-09 Thread Helmut Schütz
Dear Hans, r-help-requ...@r-project.org wrote on 2020-01-09 12:00: Date: Wed, 8 Jan 2020 12:09:55 +0100 From: Hans W Borchers To: R help project Subject: [R] Which external functions are called in a package? [Solved] NB: `trapz`, ie. the trapezoidal integration formula, seems to be th

Re: [R] R-help mailing list archives

2019-06-11 Thread Marc Schwartz via R-help
> On Jun 11, 2019, at 4:03 AM, Martin Maechler > wrote: > >> Brent via R-help >>on Sun, 9 Jun 2019 03:07:38 + writes: > > [..] > [..] > [..] > >> This email list's archives: > >> Apologies in advance if this question has been

Re: [R] R-help Digest, Vol 193, Issue 16

2019-03-20 Thread Frank van Berkum
Dear Simon, Thank you for your response! I was not able to provide you with the requested information at an earlier stage since I am not a full time academic / researcher. An example of a bam call that may result in an error is: bam(formula=Di ~ 1 + Gender + I(L_Dis==0) + s(DisPerc, by=as.numer

Re: [R] R help

2019-02-15 Thread S Ellison
> I am having an issue with creating a code in which i can hold information such > as the author of a paper, the year of publication, and the title. This doesn't really tell me what the trouble is. But ... > Also would like > to add into this data frame a logical variable which would show some >

Re: [R] R help

2019-02-14 Thread Sarah Goslee
There's a bibtex parser for R: you could adapt that for your use, rather than trying to reinvent the equivalent tool. https://cran.r-project.org/web/packages/bibtex/index.html Sarah On Thu, Feb 14, 2019 at 5:57 PM Gouresh Kamble via R-help wrote: > > Dear to whom it may concern on the R team, >

Re: [R] R help: fviz_nbclust’ is not available (for R version 3.5.2)

2019-01-16 Thread Jeff Newmiller
Indeed, if you repeat the code you provided before then the problem will not go away because you are not using the knowledge we have given you. You need to show us what you are trying differently based on the explanations provided on the mailing list. If you don't do this then we cannot move for

Re: [R] R help: fviz_nbclust’ is not available (for R version 3.5.2)

2019-01-16 Thread N Meriam
Thanks for your valuable clarifications. I tried all the steps again but the problem remains. In fact, "fviz_nbclust" is a function inside the package "factoextra". I run each step very carefully but the problem remains...It doesn't make sense because I have installed factoextra. This warning app

Re: [R] R help: fviz_nbclust’ is not available (for R version 3.5.2)

2019-01-16 Thread Jeff Newmiller
Concept 1: You don't install functions... you install packages that have functions in them. There is a function fviz_nbclust in factoextra. Concept 2: Once a package is installed, you do NOT have to install it again, e.g. every time you want to do that analysis. Making the installation part of

Re: [R] R help: fviz_nbclust’ is not available (for R version 3.5.2)

2019-01-16 Thread Sarah Goslee
Hi, fviz_nbclust is a function within the package factoextra. Once you have installed the package and loaded it, you do not need to explicitly install the function. You probably also don't need FunCluster - I think you may be confusing that package with the FUNcluster argument to the fviz_nbclust

Re: [R] R-help Digest, Vol 185, Issue 1

2018-07-03 Thread Nina Schönfelder
Dear Luke, it true that the number is not immediately displayed in the GMM-regression output using the plm package. To get the number of instruments (incl. exogenous variables and time dummies) you have to type:   k <- model    # so that k is the pgmm-estimation output (an object of class

Re: [R] R-help Digest, Vol 183, Issue 13

2018-05-13 Thread Thomas Levine
Ilio Fornasero writes: > Hello. > > I am trying to find a way to retrieve data from Harvard Dataverse website. > I usually don't have problem in web-scraping data but the problem here is > that there are a bunch of data formats such as .tab, .7z and so and I just > can't find a way to retrieve

Re: [R] R help

2018-03-31 Thread Ted Harding
A. On Sat, 2018-03-31 at 15:45 +0200, Henri Moolman wrote: > Could you please provide help with something from R that I find rather > puzzling? In the small program below x[1]=1, . . . , x[5]=5. R also > finds that x[1]<=5 is TRUE. Yet when you attempt to execute while, R does > not seem to

Re: [R] R help

2018-03-31 Thread Rui Barradas
Hello, Maybe you want while(x[i] < 5) not <= Hope this helps, Rui Barradas On 3/31/2018 2:45 PM, Henri Moolman wrote: Could you please provide help with something from R that I find rather puzzling? In the small program below x[1]=1, . . . , x[5]=5. R also finds that x[1]<=5 is TRUE. Yet

Re: [R] R help

2018-03-31 Thread Mathew Guilfoyle
When i increments to 6 (during the fifth iteration) the subsequent test of x[i]<=5 will produce an error since x has only five elements. > On 31 Mar 2018, at 14:45, Henri Moolman wrote: > > Could you please provide help with something from R that I find rather > puzzling? In the small program b

Re: [R] R help

2018-03-31 Thread Thomas Mailund
The condition is true all the way until you index outside the vector... Cheers On 31 Mar 2018, 17.29 +0200, Henri Moolman , wrote: > Could you please provide help with something from R that I find rather > puzzling? In the small program below x[1]=1, . . . , x[5]=5. R also > finds that x[1]<=5 is

Re: [R] R-help

2017-11-09 Thread MacQueen, Don
A trip to the Spatial Task View on CRAN might be in order. The RandomFields package comes to mind. -Don -- Don MacQueen Lawrence Livermore National Laboratory 7000 East Ave., L-627 Livermore, CA 94550 925-423-1062 Lab cell 925-724-7509 On 11/9/17, 12:37 AM, "R-help on behalf of PIKAL Petr"

Re: [R] R-help

2017-11-09 Thread PIKAL Petr
Hi it smells like a homework, this list has no homework policy. Anyway, maybe the sample approach could be used. Generate x,y coordinates - ?expand.grid sample n centers - ?sample select all points within defined area - ?point.in.polygon, package sp select desired number of points - ?sample Che

Re: [R] R-help Digest, Vol 171, Issue 20

2017-05-29 Thread David Winsemius
> On May 28, 2017, at 11:53 PM, Brigitte Mangin wrote: > > Thanks Ron, > > In fact, I want to make a model choice using different fixed structures and > using the results of: > Gurka MJ (2006) Selecting the best linear mixed model under reml. The > American Statistician 60(1):19{26, > the bes

Re: [R] R-help Digest, Vol 171, Issue 20

2017-05-29 Thread Brigitte Mangin
Thanks Ron, In fact, I want to make a model choice using different fixed structures and using the results of: Gurka MJ (2006) Selecting the best linear mixed model under reml. The American Statistician 60(1):19{26, the best criterium uses the reml likelihood. I asked the ASREML-r developpers an

Re: [R] R-help Digest, Vol 171, Issue 20

2017-05-23 Thread Crump, Ron
Hi Brigitte, >Did somebody know why asreml does not provide the same REML loglikehood >as coxme, lme4 or lmne. I don't know the answer to this, but I'd guess it is either to do with the use of the average information REML algorithm or asreml-r is for some reason ending up with a different subset

Re: [R] R-help Digest, Vol 170, Issue 29

2017-05-01 Thread Adrian Trapletti
> Message: 1 > Date: Fri, 28 Apr 2017 11:07:40 + > From: T.Riedle > To: "R-help@r-project.org" > Subject: [R] Augmented Dickey Fuller test > Message-ID: <1493377701072.16...@kent.ac.uk> > Content-Type: text/plain; charset="UTF-8" > > Dear all, > > I am trying to run an ADF test using the adf.

Re: [R] R help

2017-04-17 Thread Jeff Newmiller
I am assuming that you are referring to your emails from last October and last month regarding nlme. A) Read the Posting Guide, which mentions things like the fact that you should set your email program to send plain text when posting on this mailing list , and that there is a dedicated R-sig-m

Re: [R] R help

2017-04-17 Thread David L Carlson
The only recent question that I can see you posted (Mar 22) was tagged onto an existing thread so it is possible people assumed you were answering the question raised by the original poster. Do not use html - learn how to send emails as plain text. If you have a question, start a new thread, do

Re: [R] R help

2016-11-17 Thread David L Carlson
This should work. First create some reproducible data: > set.seed(42) > temp.matrix <- matrix(rnorm(255*13), 255, 13) Then you need to send each row to t.test() using apply() extracting the statistic with [[1]]: > result <- apply(temp.matrix, 1, function(x) (t.test(x[3:7], x[8:12], > paired=TR

Re: [R] R-help Digest, Vol 164, Issue 4

2016-10-04 Thread Kamil Bartoń
Hi Caitie, whatever it is you want to achieve, you seem to be doing it in a very complicated way. The code you gave appears to be for producing a model selection table, yet you say you're trying to do model averaging. If you want a model selection table, why not use the one `dredge` produces (

Re: [R] R Help: System Identification for First order delay and dead time with TF model

2016-09-23 Thread Eduardo M. A. M. Mendes
Hi This is a continuous time system. Are you willing to discretize the model? Regards Ed Enviado do meu iPhone > Em 23 de set de 2016, às 06:15, Yoshikazu Noguchi > escreveu: > > Hello, > > > > May I ask your help? > > > > I would like to do System Identification using time serie

Re: [R] R help

2016-08-07 Thread Jim Lemon
Hi Vladimir, This may fix the NA problem: vdat<-read.table(text="numberoftweet,tweet,locations,badwords 1,My cat is asleep,London,glum 2,My cat is flying,Paris,dashed 3,My cat is dancing,Berlin,mopey 4,My cat is singing,Rome,ill 5,My cat is reading,Budapest,sad 6,My cat is eating,Amsterdam,annoyed

Re: [R] R help

2016-08-06 Thread Jim Lemon
Hi Vladimir, Do you want something like this? vdat<-read.table(text="numberoftweet,tweet,locations,badwords 1,My cat is asleep,London,glum 2,My cat is flying,Paris,dashed 3,My cat is dancing,Berlin,mopey 4,My cat is singing,Rome,ill 5,My cat is reading,Budapest,sad 6,My cat is eating,Amsterdam,ann

Re: [R] R help

2016-08-05 Thread Ulrik Stervbo
I'm not quite sure if this is what you are looking for: example.df <- data.frame(words= c("A T", "Z H", "B E", "C P H"), badwords = c("A|I|J|H|K|L")) # Extract the column with bad words badwords <- example.df$badwords badwords <- as.character(badwords[1]) # Subset the data.frame subset(example.d

Re: [R] R help

2016-08-05 Thread ruipbarradas
Hello, Please use ?dput to post a data example. Use something like the following, where 'dat' is the name of your data.frame. dput(head(dat, 30))  # paste the output of this in a mail Hope this helps, Rui Barradas   Citando Вова Грабарник : > Dear R command, > > I was wondering if I could a

Re: [R] R help needed

2016-06-23 Thread Marc Schwartz
> On Jun 23, 2016, at 9:50 AM, Sana Fatima wrote: > > Hello everyone, > I am trying to create an shiny app that could be used for ~ 700 different > user names and passwords. Each username and password would lead to a > different set of data being pulled in, however the tabs and fields with in >

Re: [R] R help contingency table

2016-06-20 Thread Jim Lemon
Hi Lucie, You can visualize this using the sizetree function (plotrix). You supply a data frame of the individual choice sequences. # form a data frame of "random" choices coltrans<-data.frame(choice1=sample(c("High","Medium","Low"),100,TRUE), choice2=sample(c("High","Medium","Low"),100,TRUE)) si

Re: [R] R help contingency table

2016-06-20 Thread Lucie Dupond
Thank you for your answer ! I'm sorry, i've made a mistake in the second matrix, they should have the same row/column labels, I just used another label vector by mistake. My supervisor doesn't have a solution for this, and neither have every one I asked around me. Thanks for your solution, but

Re: [R] R help contingency table

2016-06-20 Thread David L Carlson
You should consult with your adviser or someone at your institution who has more experience in statistical analysis than you do. You want to compare the matrices, but the row/column labels are different so you may be comparing completely different categories. Technically, you need to convert th

Re: [R] R help contingency table

2016-06-20 Thread S Ellison
> The first colomn is showing the first color, and the second is showing the > second color of the transition Are you sure? transitions1 is a 3x3 matrix; it has three columns, not two. Could it be that the columns are colour 2 following initial condition given by row, or vice versa? [not that t

Re: [R] R-help Digest, Vol 160, Issue 8

2016-06-08 Thread David Howell
I am having trouble running aplpack on my Mac. It will run on my PC, but the Mac gives an error message. Below is the result that I obtained. It seems to install fine--see below--but I can't load the library. > install.packages("aplpack") trying URL 'http://cran.rstudio.com/bin/macosx/contri

Re: [R] R help- fit distribution "fitdistr"

2016-05-26 Thread Bert Gunter
Inline. On Thursday, May 26, 2016, Jessica Wang <25695...@qq.com> wrote: > Hello, I just start using R. I want to use “fitdistr” to fit distribution > of the data. Then how can I verify if the data really fit the distribution? > Thanks [data is attached] > > You can't. There are many ways to judg

Re: [R] R help - Web Scraping of Google News using R

2016-05-24 Thread boB Rudis
What you are doing wrong is both trying yourself and asking others to violate Google's Terms of Service and (amongst other things) get your IP banned along with anyone who aids you (or worse). Please don't. Just because something can be done does not mean it should be done. On Tue, May 24, 2016 at

Re: [R] R-help Digest, Vol 157, Issue 25

2016-03-24 Thread Boris Steipe
If the number of values are always the same, the proposed strategies will work for you. If they are not the same, you need a completely different approach. Most importantly, you will need to figure out which columns correspond to missing values. Is it always the last ones that are dropped? If no

Re: [R] R-help Digest, Vol 157, Issue 25

2016-03-24 Thread Burhan ul haq
Thanks to Boris Steipe, Jim Lemon and Ivan Calandra for replying. I messed up while copying, there are equal number of values for each country. @ Ivan, In case there were different number of values, and we wanted to fill in with 1) NA, or 2) "average of the rest of values" in the missing valu

Re: [R] R help

2016-01-31 Thread കുഞ്ഞായി kunjaai
Hai Anukriti Gupta, While sending mail to mailing list, please change the subject from "R Help" to more specific one..(eg: R Regression error..) Because we all can refer your mail and the solution in future by checking the mail subject On Sat, Jan 30, 2016 at 9:55 PM, Boris Steipe wro

Re: [R] R help

2016-01-30 Thread Boris Steipe
I think the error message is pretty clear. Your calculations are attempting to allocate more memory than you have available. As to what is causing your code to do this, only someone familiar with your code could possibly tell. B. (Read the posting guide, please - and don't post in HTML :-) On

Re: [R] R-help mailing list activity / R-not-help?

2016-01-26 Thread Duncan Murdoch
On 26/01/2016 6:30 AM, S Ellison wrote: Yet, the trend I've seen is one of increasing **R-not-help**, in that there are many posts, often by new R users who get replies that not infrequently range from just mildly off-putting to actively hostile: Slightly surprised that in a debate postulated o

Re: [R] R-help mailing list activity / R-not-help?

2016-01-26 Thread S Ellison
> Yet, the trend I've seen is one of increasing **R-not-help**, in that there > are > many posts, often by new R users who get replies that not infrequently range > from just mildly off-putting to actively hostile: Slightly surprised that in a debate postulated on increasing 'meanness', no-one h

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Kevin E. Thorpe
Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Michael Friendly Sent: January 24, 2016 5:43 PM To: Jean-Luc Dupouey; r-help@r-project.org Subject: Re: [R] R-help mailing list activity / R-not-help? On 1/23/2016 7:28 AM, Jean-Luc Dupouey wrote: Dear members, Not a

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread John Sorkin
iate that. Peter Alspach (one of the 'moderators') -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Oliver Keyes Sent: Tuesday, 26 January 2016 10:23 a.m. To: Duncan Murdoch Cc: r-help Subject: Re: [R] R-help mailing list activity / R-not-hel

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Peter Alspach
ach (one of the 'moderators') -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Oliver Keyes Sent: Tuesday, 26 January 2016 10:23 a.m. To: Duncan Murdoch Cc: r-help Subject: Re: [R] R-help mailing list activity / R-not-help? Sorry, poor phrasing on

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread jwd
On Mon, 25 Jan 2016 11:06:35 -0500 Oliver Keyes wrote: > +1. And frankly I would like to suggest that there is another obvious > solution here; pairing a set of guidelines around expected user > behaviour with removing people from the mailing list, or moderating > them, if they do not think that

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread jwd
On Mon, 25 Jan 2016 12:33:12 -0800 Hasan Diwan wrote: > There exists a fine line between being unintentionally rude, but > helpful and purposely putting someone down. -- H The line is really not "fine" at all since it lies in that word "purposely." Also, you've associated "helpful" with uninten

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Oliver Keyes
Sorry, poor phrasing on my part; on the occasions where someone is rude, all I see is... I agree the public cautioning should be done by moderators, yes. On 25 January 2016 at 16:13, Duncan Murdoch wrote: > On 25/01/2016 3:33 PM, Hasan Diwan wrote: >> >> There exists a fine line between being un

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Hasan Diwan
On 25 January 2016 at 13:13, Duncan Murdoch wrote: > On 25/01/2016 3:33 PM, Hasan Diwan wrote: > >> There exists a fine line between being unintentionally rude, but helpful >> and purposely putting someone down. -- H >> > > I'm afraid I don't think your point is relevant. I didn't claim all the

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Duncan Murdoch
On 25/01/2016 3:33 PM, Hasan Diwan wrote: There exists a fine line between being unintentionally rude, but helpful and purposely putting someone down. -- H I'm afraid I don't think your point is relevant. I didn't claim all the people who were rude did it unintentionally. However, I don't k

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Hasan Diwan
There exists a fine line between being unintentionally rude, but helpful and purposely putting someone down. -- H On 25 January 2016 at 12:07, Duncan Murdoch wrote: > On 25/01/2016 2:45 PM, Oliver Keyes wrote: > >> I disagree, and would argue that fails to take a systemic view of this >> kind of

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Duncan Murdoch
On 25/01/2016 2:45 PM, Oliver Keyes wrote: I disagree, and would argue that fails to take a systemic view of this kind of behaviour. If individual commentators are acerbic and are only privately reprimanded, from the perspective of everyone else it looks like the acerbic reply was A-OK. Someone

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Oliver Keyes
a posting one >> >> does >> >> not like for some reason. It might also be worthwhile to actively >> >> counter >> >> negative feedback when we experience that 'cringing' moment. I'm not >> >> thinking >> >> to foster

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Fowler, Mark
ler, Mark; dupo...@nancy.inra.fr; r-help@r-project.org; frien...@yorku.ca Subject: Re: [R] R-help mailing list activity / R-not-help? When we read acerbic replies we should remind the poster to reply in a more moderate tone. On the other hand noting that the list is not intended to be a source of answe

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Duncan Murdoch
ome tangible reassurance to new >> users, and not just the ones invoking the negative feedback, that a >> particular respondent may not represent the perspective of the list. >> >> -Original Message- >> From: R-help [mailto:r-help-boun...@r-project.org] On Behalf O

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread John Sorkin
t may not represent the perspective of the list. >> >> -Original Message- >> From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Michael >> Friendly >> Sent: January 24, 2016 5:43 PM >> To: Jean-Luc Dupouey; r-help@r-project.org >> Subj

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Ted Harding
represent the perspective of the list. > > -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Michael > Friendly > Sent: January 24, 2016 5:43 PM > To: Jean-Luc Dupouey; r-help@r-project.org > Subject: Re: [R] R-help mailing list activi

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Oliver Keyes
- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Michael > Friendly > Sent: January 24, 2016 5:43 PM > To: Jean-Luc Dupouey; r-help@r-project.org > Subject: Re: [R] R-help mailing list activity / R-not-help? > > > On 1/23/2016 7:28 AM, Jean-Luc Dupou

Re: [R] R-help mailing list activity / R-not-help?

2016-01-25 Thread Fowler, Mark
y Sent: January 24, 2016 5:43 PM To: Jean-Luc Dupouey; r-help@r-project.org Subject: Re: [R] R-help mailing list activity / R-not-help? On 1/23/2016 7:28 AM, Jean-Luc Dupouey wrote: > Dear members, > > Not a technical question: But one worth raising... > > The number of thread

Re: [R] R-help mailing list activity / R-not-help?

2016-01-24 Thread Robert Sherry
I think this mailing list is wonderful and it has helped me a lot. In fact, I am not sure I would be using R today if it was not for this list. Bob On 1/24/2016 4:42 PM, Michael Friendly wrote: On 1/23/2016 7:28 AM, Jean-Luc Dupouey wrote: Dear members, Not a technical question: But one wo

Re: [R] R-help mailing list activity / R-not-help?

2016-01-24 Thread Michael Friendly
On 1/23/2016 7:28 AM, Jean-Luc Dupouey wrote: Dear members, Not a technical question: But one worth raising... The number of threads in this mailing list, following a long period of increase, has been regularly and strongly decreasing since 2010, passing from more than 40K threads to less th

Re: [R] R-help mailing list activity

2016-01-23 Thread Duncan Murdoch
One additional point: On 23/01/2016 8:33 AM, Duncan Murdoch wrote: distinction between answers and comments, it's gamification (badges, One advantage of Stackoverflow is that you can go back and correct silly errors (like misspelling "its"). Duncan Murdoch

Re: [R] R-help mailing list activity

2016-01-23 Thread Rich Shepard
On Sat, 23 Jan 2016, Duncan Murdoch wrote: I don't see duplication as counterproductive -- some people like one style, some like the other, both will find answers. Duncan, There's another factor to add to your list. Mail lists, such as r-help and the various SIGs _push_ messages to subscrib

Re: [R] R-help mailing list activity

2016-01-23 Thread Duncan Murdoch
On 23/01/2016 7:28 AM, Jean-Luc Dupouey wrote: Dear members, Not a technical question: The number of threads in this mailing list, following a long period of increase, has been regularly and strongly decreasing since 2010, passing from more than 40K threads to less than 11K threads last year. T

Re: [R] R-help mailing list activity

2016-01-23 Thread Thomas Petzoldt
Hi, from my perspective as R user and package maintainer I would consider the normalization of the r-help mailing list a good sign. r-help is still a good place for general questions, while more specific discussions moved to the r-sig-... mailing lists. Maybe a slight reduction can also be a

Re: [R] R-help mailing list

2015-12-03 Thread Sarah Goslee
You need to start with a basic understanding of how R works. Here are a couple of sources that might help you get started: http://www.burns-stat.com/documents/tutorials/impatient-r/ http://cyclismo.org/tutorial/R/ Sarah On Thu, Dec 3, 2015 at 4:51 PM, Saba Sehrish via R-help wrote: > Hi > > > >

Re: [R] R-help Digest, Vol 154, Issue 1

2015-12-01 Thread 13351275265
I have the same question about the following strings: sub("^([0-9]*).*$", "\\1", fields) could you explain them in detail . I would lookforward to yourwonderful reply. 2015-12-01 13351275265 发件人:r-help-requ...@r-project.org 发送时间:2015-12-01 19:00 主题:R-help Digest, Vol 154

Re: [R] R help

2015-10-13 Thread Jeff Newmiller
In general you should read the Posting Guide mentioned at the bottom of every email, which points out that you should post in plain text. Figuring out how to send plain text email in your email client will help you make sure that we see what you see. You should also try to insert reproducible

Re: [R] R help

2015-10-13 Thread Sarah Goslee
Hi, First of all, you almost certainly want to get your data into R with stringsAsFactors=FALSE rather than creating a factor with 345196 levels. mydata <- read.table("whateverfile", stringsAsFactors=FALSE) I'm just guessing, but you probably also don't really want filter(), but subset() instead

Re: [R] R-help, please

2015-09-21 Thread MCGUIRE, Rhydwyn
y, 22 September 2015 12:15 AM To: r-help@R-project.org Subject: Re: [R] R-help, please Good day, My name is Kim Nguyen and please I need your help with: How to calculate the PASS rate of the data in the table below, with PASS in a single subject if value>=50 and PASS will be given if PASS 3

Re: [R] R-help, please

2015-09-21 Thread John Kane
It looks like you sent the e-mail in HTML. It is unreadable. You must sent e-mail to R-help in plain text not HTML John Kane Kingston ON Canada > -Original Message- > From: le4...@mweb.co.za > Sent: Mon, 21 Sep 2015 16:14:41 +0200 > To: r-help@r-project.org > Subject:

Re: [R] R-help, please

2015-09-21 Thread Rolf Turner
Your question looks very much like homework and this list does not do homework for people. Talk to your instructor. cheers, Rolf Turner On 22/09/15 02:14, le4...@mweb.co.za wrote: Good day, My name is Kim Nguyen and please I need your help with: How to calculate the PASS rate of the data

Re: [R] R-help, please

2015-09-21 Thread le4...@mweb.co.za
Good day, My name is Kim Nguyen and please I need your help with: How to calculate the PASS rate of the data in the table below, with PASS in a single subject if value>=50 and PASS will be given if PASS 3 out of 4 subjectsWhich package will I need to use in this analysis ID Literacy Maths

Re: [R] R-help

2015-08-29 Thread Jim Lemon
Hi Aun, It looks like you haven't installed the DBI package, which seems to be required by the hgu133acdf package. Try installing DBI first. Jim On Sun, Aug 30, 2015 at 12:57 PM, aun syed via R-help wrote: > Dear R administration, > i have installed R x64 3.2.2 and i am trying to install annota

Re: [R] R: help with metasens

2015-08-13 Thread Michael Dewey
diagonal bacn is a typo, sorry for that. My brain meant to type diagonal band, ie going in this case from north west to south east but my fingers failed completely. On 13/08/2015 10:25, Mario Petretta wrote: Many thanks for your suggestion. I will try a new database search and the hc metaphor

Re: [R] R-help

2015-05-18 Thread Jeff Newmiller
It is quite clear that you are confused, because your function is full of variables that are not defined in your email. Unfortunately, that also makes helping you quite difficult. Also, your (accidental?) use of HTML format means that your code is garbled on our end (see below). You have to lear

Re: [R] R-help

2015-05-18 Thread Boris Steipe
(Don't post in HTML. Your code is illegible that way.) Something as simple as ... return(ts) ... to conclude your function perhaps? B. On May 18, 2015, at 7:32 AM, Ariadna García Sáenz wrote: > Good afternoon, > I'm working in a disease spread model, and I have to use a function to put >

Re: [R] "R" help leaves out lines of text

2015-04-16 Thread paul
Duncan Murdoch gmail.com> writes: > The Cygwin release is not supported by us, and is known to be buggy, > because it doesn't handle line endings properly. > > You'll need to talk to the Cygwin folks if you can't reproduce this > in one of our releases available from > cran.r-project.org/bin/windo

Re: [R] "R" help leaves out lines of text

2015-04-16 Thread Duncan Murdoch
On 16/04/2015 12:23 AM, paul wrote: > I am ramping up on the R statistical analysis environment. I find > that the help leaves out entire lines of text. The pager is > /usr/lib/R/bin/pager. I changed it to /bin/less, but I see the same > symptom. The problem shows up both in xterm and mintty.

Re: [R] r help

2015-03-18 Thread John Kane
I don't think there is any way we can help with a data set that appears to be sitting on your hard drive. On a wild guess, however, there probaby is a problem with the final line terminator. Open the file in a text editor, go to the last item in the file, place the cursor after it, hit return

Re: [R] r help

2015-03-18 Thread jim holtman
Works fine for me. The error message just means that the last line did not end with a 'new line' character: > x <- as.matrix(read.table("/temp/td.txt")) Warning message: In read.table("/temp/td.txt") : incomplete final line found by readTableHeader on '/temp/td.txt' > data<-list(N1=2000,N2=2

Re: [R] R Help Pops um in Webbrowser | how to dissable

2015-03-13 Thread David Winsemius
On Mar 13, 2015, at 4:42 AM, acrodaniel wrote: > R studio writes that it has a problem with > > .rs.httpdPort() > > when startup > RStudio question are best handled on the web forums established to support that product. They are not on-topic for Rhelp. ## R-help@r-project.org maili

Re: [R] R Help Pops um in Webbrowser | how to dissable

2015-03-13 Thread acrodaniel
R studio writes that it has a problem with .rs.httpdPort() when startup -- View this message in context: http://r.789695.n4.nabble.com/R-Help-Pops-um-in-Webbrowser-how-to-dissable-tp4704603p4704606.html Sent from the R help mailing list archive at Nabble.com. ___

Re: [R] R Help

2015-03-02 Thread Uwe Ligges
Better ask for local help if you can't reduce your code to some minimal examples so that we can understand easily what you are looking for. On 02.03.2015 10:38, Rami Alzebdieh wrote: Dear Sir, I start using (R) 3 months ago, and I am still learning, Same for me after more than 16 year

Re: [R] R-help Digest, Vol 143, Issue 10

2015-01-11 Thread Ronald Wyllys
This follows up on Duncan Murdock's reply to Boris Steipe's question about possible advantages to using RStudio. I agree with Mr. Murdock's list of advantages of RStudio, but disagree mildly with his comment about feeling that the tiled display provides too little space. When I use RStudio, I

Re: [R] R-help Digest, Vol 141, Issue 29

2014-11-29 Thread Tom Keller
http://www.bioperl.org/wiki/HOWTOs On Nov 29, 2014, at 3:00 AM, r-help-requ...@r-project.org wrote: Subject: Re: [R] perl On Friday, November 28, 2014, Noha Osman mailto:nmo_...@usc.edu>> wrote: Hi Folks Iam a new user in perl and I have two questions .Hopefully I get any help [[

Re: [R] R help

2014-07-08 Thread Uwe Ligges
On 01.07.2014 17:18, Andre Weeks wrote: To whom it may concern: I installed R 3.1 and I get this. In normalizePath(path.expand(path), winslash, mustWork) : path[1]="\\network\users\aweeks\My Documents/R/win-library/3.1": Access is denied Is there any way to change this path? I have looked

  1   2   3   4   5   >