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

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,

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:

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

2020-10-06 Thread Avi Gross via R-help
this as 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 have not read

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

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)) #

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

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

[R] R-help mailing list archives

2019-06-11 Thread Martin Maechler
> 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 asked and > answered many times already. > But know that

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,

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,

[R] R help

2019-02-14 Thread Gouresh Kamble via R-help
Dear to whom it may concern on the R team, 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. Also would like to add into this data frame a logical variable which would show some keywords I used to

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

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

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

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

2019-01-16 Thread N Meriam
Hello, I'm struggling to install a function called "fviz_nbclus". My code is the following: pkgs <- c("factoextra", "NbClust") install.packages(pkgs) library(factoextra) library(NbClust) # Standardize the data load("df4.rda") library(FunCluster) install.packages("fviz_nbclust")

[R] R help: circular dendrogram

2019-01-08 Thread N Meriam
Dear all, I generated a circular dendrogram with R (see attached). I have a total of 360 landraces. What I want to do next is generate a different color for each cluster and also generate colors to show the country/region. I don't know if it's also possible to put a code number (associated with

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

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

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.

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 >

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

[R] R help

2018-03-31 Thread Henri Moolman
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 recognize the condition. Any thoughts on why this happens? Regards

[R] R-help: ActivPALProcessing

2017-12-01 Thread Thralls, Katie
Hi, I am having trouble with the function process.AP in the ActivPALProcessing package. Based on the detailed instruction attached by the author, it is my understanding that process.AP will use the information provided in the log of subjects to batch process AP events files saved in the

Re: [R] R-help

2017-11-09 Thread MacQueen, Don
rsday, November 9, 2017 4:40 AM > To: r-help@r-project.org > Subject: [R] R-help > > Generate a clustered pattern in [0; 1]2 as follows: > > (a) Generate nc, say 20, independent cluster centres (which can be called > parents) that are distributed i.i.d.

Re: [R] R-help

2017-11-09 Thread PIKAL Petr
Cheers Petr > -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of john lukore > Sent: Thursday, November 9, 2017 4:40 AM > To: r-help@r-project.org > Subject: [R] R-help > > Generate a clustered pattern in [0; 1]2 as follows: > &

[R] R-help

2017-11-08 Thread john lukore
Generate a clustered pattern in [0; 1]2 as follows: (a) Generate nc, say 20, independent cluster centres (which can be called parents) that are distributed i.i.d. uniformly in the unit square; (b) then n daughters are assigned i.i.d. uniformly to these parents and such that each daughter is

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

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

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

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

Re: [R] R help

2017-04-17 Thread David L Carlson
important information. David L. Carlson Department of Anthropology Texas A University -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Santiago Bueno Sent: Monday, April 17, 2017 10:29 PM To: R-help@r-project.org Subject: [R] R help I need help with R

[R] R help

2017-04-17 Thread Santiago Bueno
I need help with R, and although I have posted my questions, no one seems to care. Can some one coach me in formulating a correct question? Regards, Santiago [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To

Re: [R] R help

2016-11-17 Thread David L Carlson
partment of Anthropology Texas A University College Station, TX 77840-4352 -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Vincenzo Prestigiacomo Sent: Wednesday, November 16, 2016 2:07 PM To: r-help@r-project.org Subject: [R] R help Hello everybody, I am a

[R] R help

2016-11-17 Thread Vincenzo Prestigiacomo
Hello everybody, I am a student at Unibas and I am trying to run a two sample t-test on a matrix which is a 255*13 matrix (see attachment). I want to run the t-test, row-wise, with the columns 3:7 being a part of the first group and columns 8-12 being a part of the second group. I tried running

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

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

2016-09-23 Thread Yoshikazu Noguchi
Hello, May I ask your help? I would like to do System Identification using time series data which has transport delay. First of all, I would like to identify the following parameters (K, Tau, TD) for SISO case in the following Laplace domain equation: K, Tau, TD: ymodel = (K/(Tau*s

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

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

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

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

[R] R help

2016-08-05 Thread Вова Грабарник
Dear R command, I was wondering if I could ask you recommendations on my problem if that is fine with you. Basically, I have a data frame with 5 columns and 10 000 tweets recorded(rows). Those columns are: numberofatweet(number), tweet (actual textual tweet), locations(from where tweet sent),

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

[R] R help needed

2016-06-23 Thread Sana Fatima
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 the app will be the same. Just that different username would

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))

Re: [R] R help contingency table

2016-06-20 Thread Lucie Dupond
y College Station, TX 77840-4352 -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Lucie Dupond Sent: Sunday, June 19, 2016 9:10 PM To: r-help@r-project.org Subject: [R] R help contingency table Hello, I'm sorry if my question is really basic, but I'm having so

Re: [R] R help contingency table

2016-06-20 Thread David L Carlson
r-help-boun...@r-project.org] On Behalf Of Lucie Dupond Sent: Sunday, June 19, 2016 9:10 PM To: r-help@r-project.org Subject: [R] R help contingency table Hello, I'm sorry if my question is really basic, but I'm having some troubles with the statistics for my thesis, and especially the khi squar

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

[R] R help contingency table

2016-06-20 Thread Lucie Dupond
Hello, I'm sorry if my question is really basic, but I'm having some troubles with the statistics for my thesis, and especially the khi square test and contingency tables. For what I understood, there are two "kinds" of khisquare test, that are quite similar : - Homogeneity, when we have one

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

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

[R] R help- fit distribution "fitdistr"

2016-05-25 Thread Jessica Wang
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] res<-fitdistr(data$Report.delay, "Poisson") h<-hist(data$Report.delay) xfit<-floor(seq(0, 250, 50))

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

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

2016-05-24 Thread Kumar Gauraw
Hello Experts, I am trying to scrap data from Google news for a particular topic using XML and Curl Package of R. I am able to extract the summary part of the news through *XPath* but in a similar way, I am trying to extract title and Links of news which is not working.Please note this work is

[R] [R ] help in if else in connect the simulation in normal and gamma distribution.

2016-04-07 Thread tan sj
I am new in R. I have to conduct simulation study on the robustness of 2 sample tests on several combination of factors (sample sizes ,variance and distribution). I have been completed write a code in normal distribution, and now i wish to add if -else in the code so that the code can

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

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

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

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

[R] R help

2016-01-30 Thread Anukriti Gupta
Hi I am running a ordinal logistic regression, however its giving me an error like Error: cannot allocate vector of size 58.8 GbIn addition: Warning messages:1: In rep.int(c(1, numeric(n)), n - 1L) : Reached total allocation of 8057Mb: see help(memory.size)2: In rep.int(c(1, numeric(n)), n -

[R] R-help with markovchain package and sensitivity analysis

2016-01-27 Thread Kristin Bornstein
Hi - I'm currently trying to work with a markov chain transition matrix developed using the markovchain package (it's a 42x42 matrix model). I've got the matrix up and running smoothly with no problems. However, I'm trying to run some sensitivity analyses and distribution analyses on the model,

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

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

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

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 Fowler, Mark
...@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 answers to home work

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 Dupouey wrote

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

2016-01-25 Thread Fowler, Mark
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 threads in this mailing list, followin

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

2016-01-25 Thread Ted Harding
st. > > -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 activity / R-not-help? > > > O

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

2016-01-25 Thread Duncan Murdoch
ce 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 Of Michael >>

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

2016-01-25 Thread John Sorkin
ay 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 >> Subject

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

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

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

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

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

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

2016-01-25 Thread Peter Alspach
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 <murdoch.dun...@gmail.com> Cc: r-help <r-help@r-project.org> Subject: Re: [R] R-help mailing list activity / R-not-

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

2016-01-25 Thread John Sorkin
one. Mostly people seem to appreciate 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 <murdoch.dun...@gmail.com> Cc: r-help <r-help@r-pro

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

2016-01-25 Thread Oliver Keyes
gt;> to foster contention, but simply to provide some 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. >> >> >> &g

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

2016-01-25 Thread Kevin E. Thorpe
essage- 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 tec

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

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

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

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

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.

[R] R-help mailing list activity

2016-01-23 Thread Jean-Luc Dupouey
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. The trend is similar for most of the

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

[R] R-Help

2015-12-14 Thread Bello A rasheed via R-help
Dear R users  Kindly help me on how run this code because there is error when ever i run it. It give me an error at Error: lent >= 1 is not TRUE  Error: object 'hubPsi' not found Error in cbind(b = b, A = A, B = B, V = A/B^2, e = B^2/A, gamma. = b/B,  :   dims [product 3] do not match the length

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

[R] R-help mailing list

2015-12-03 Thread Saba Sehrish via R-help
Hi   I am a PhD student and I want to learn how to run Linear regression with Lag-5 on R through "For Loop". Please find the details below:   1-            I need guidance about Coding/ Programming for Simple Linear Regression with Lag-5 on R. 2-   I have time series data of “Daily

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

  1   2   3   4   5   6   7   >