ong them is >= 500. It does not give you the fewest number
of periods that can do this. Is this what you want?
tab[with(tab,{
rownums<- sample(seq_len(nrow(tab))[X1>0])
sz <- cumsum(X2[rownums])
rownums[c(TRUE,sz<500)]
}),]
Cheers,
Bert
Bert Gunter
"Data is not inf
Time to do your own homework by working through an R tutorial or two.
There are many on the web -- or see the Intro to R tutorial that ships
with R.
?tapply
?unique
is one of many answers to your query.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge
I would have thought the first place to look would be ?interaction.plot
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Sun, Nov 22, 2015 at 2:44 PM, angelo.arc...@virgilio.it
wrote:
&
?dput or ?dump perhaps. (and dget() and source() )
I realize that these may not do what you want, but exactly what you
want is a bit unclear (to me, anyway) depending on exactly what your
saved results are.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge
This list is about R programming. Yours is a statistical question.
Although there is certainly a nonempty intersection (and someone may
attempt a response), statistical questions are better directed to a
statistical list like stats.stackexchange.com.
Cheers,
Bert
Bert Gunter
"Data i
Wrong list (mostly). You would do much better at the Bioconductor
list, https://support.bioconductor.org/
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Tue, Nov 24, 2015 at 9:04
But please spend some time with an R tutorial or two (An Intro to R
ships with R; there are many more on the Web) before you post further
here. Many such elementary confusions and time wasted -- both yours
and ours -- will be avoided if you do so.
Cheers,
Bert
Bert Gunter
"Data i
folly.
Of course, both you and John (and others) are free to disagree ...
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Wed, Nov 25, 2015 at 7:04 PM, angelo.arc...@virgilio
Is this a homework problem? This list has a no homework policy.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Fri, Nov 27, 2015 at 4:08 PM, mviljamaa wrote:
> How can I use unir
This is a Bioconductor package. So I think you would do better to post
on the Bioconductor list, not here.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Tue, Dec 1, 2015 at 6:27 AM, Be
This is a general purpose R programming help list. Your post appears
to be a very specific, subject matter question that should go to the
R-Sig-geo list, where you are likely to get better and prompter
responses.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not know
... or perhaps using rep() to do the indexing directly instead of matching:
dfrm[ ave(dfrm$v1, dfrm$v1, FUN =
function(x)rep(c(TRUE,FALSE),c(3,length(x)-3))), ]
There's probably another 6 dozen ways to do it, especially if you
access packages like data.table, plyr, etc.
Cheers,
Bert
...
Perhaps also worth mentioning -- David's solution works even if there
are less than 3 rows per group, whereas mine will fail.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On W
I should have added -- is this homework? There is a no homework policy
on this list.
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Thu, Dec 3, 2015 at 7:54 AM, Bert Gunter wrote:
> Have you s
to be a
bioinformatics type of issue.
Cheers,
Bert
P.S. Both of these could be found with suitable internet searches.
Don't neglect search engines for these types of queries. I have found
them to be very helpful.
Bert Gunter
"Data is not information. Information is not knowledge. And
Try reading and following the Help file, ?rbind.data.frame.
You are inventing your own syntax, not using R's.
Incidentally, growing the frames as you do is generally a bad idea.
Search r-help archives for why.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not
Champ is a BioConductor package. You should post to the Bioconductor
Help, not here.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Mon, Dec 7, 2015 at 12:34 PM, Brian Smith wrote:
&
gument, which a data frame is not --
ergo the error.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
-- Clifford Stoll
On Tue, Dec 8, 2015 at 2:30 PM, Dimitri Liakhovitski
wrote:
> Hello!
> Could you pleas
Sarah:
Note that (as I read them) aggregate() and by() work differently on
data frames. aggregate() computes FUN column by column while by()
feeds the whole (subset) data frame to FUN.
If I am wrong about this, I would greatly appreciate being corrected.
Cheers,
Bert
Bert Gunter
"Da
Define: "transfer"
( save/load should be efficient and fast within R, but you appear to
have something else in mind. What?)
Apologies if it's obvious and I just don't get it.
Cheers,
Bert
Bert Gunter
"Data is not information. Information is not knowledge. And k
u care to reply, please do so to the list, not to me.
Cheers,
Bert
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 Wed, Dec 9, 2015 at 12:27 PM,
Wrong list!. This is about programming **IN** the R language. For your
sort of question, post to the R-devel list.
Cheers,
Bert
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 &qu
Thanks, Marc.
-- Bert
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 Thu, Dec 10, 2015 at 9:43 AM, Marc Schwartz wrote:
> Hi,
>
mething obvious)?
Finally, if this is homework, post elsewhere: this list has a no
homework policy.
Cheers,
Bert
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" c
Sara:
Always cc your reply to the list, which I have done here.
No, I cannot help you. Others may be able to now. (They may still need
your data, however).
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it.&quo
Bert
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 Thu, Dec 10, 2015 at 1:16 PM, Bert Gunter wrote:
> Sara:
>
> Always cc your re
O,
you are blaming others for your failings.
If you care to respond, yours will be the last word. I will not
comment further (and probably shouldn't have here).
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it.&qu
tr(x,"fy")<- "funny"
> x
[,1] [,2]
[1,]14
[2,]25
[3,]36
attr(,"fy")
[1] "funny"
> x[]
[,1] [,2]
[1,]14
[2,]25
[3,]36
attr(,"fy")
[1] "funny" ## this contradicts the Language d
local statistical resource.
If I misunderstand, correction would be appreciated.
Cheers,
Bert
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 )
rning help site, as this is a statistical issue, not an R
programming issue AFAICS (corrections welcome if I'm wrong about
this), and so is somewhat OT here.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into i
If you do not receive a satisfactory reply here, this is the sort of
question that you should email the maintainer for, found by:
> maintainer("gmodels")
[1] "Gregory R. Warnes "
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep comi
ta$id[groups==grp[x]], size[x]))
to:
samples <- lapply(1:5, function(x) sample(data[groups==grp[x],"id"], size[x]))
(rows and columns in a data frame can be simultaneously indexed)
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming alo
response.
'Nuff said.
Cheers,
Bert
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 Tue, Dec 15, 2015 at 7:56 AM, debra ragland via R-help
w
There is a Rcpp-devel mailing list that should be more suitable for this post.
Cheers,
Bert
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 )
7;t have a clue.
Cheers,
Bert
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 Wed, Dec 16, 2015 at 10:29 AM, John Karon wrote:
> I am tr
I would just like to confirm that, like David W. , I am on a Mac.
Cheers,
Bert
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 Wed, Dec
...
which reminds me of Prof. Henry Higgins's comment in My Fair Lady in
the song "Why can't the English" :
There even are places where English completely disappears.
Why, in America, they haven't used it for years!
Cheers,
Bert
Bert Gunter
"The trouble with havi
f doing
multivariate smoothing splines. The mars() function in packages mda
and earth is another. Apparently the one in earth adds "extra
features" to the one in mda.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into
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 Fri, Dec 18, 2015 at 12:32 PM, Luigi Marongiu
wrote:
> Dear all,
> I am plotting
as I don't care
to waste time chasing poorly phrased questions.
Cheers,
Bert
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, De
) Showing us what you have done and what errors have occurred. You
should not expect us to do your work for you, at least IMHO (others
may differ).
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (ak
handy,
though.
Cheers,
Bert
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 Tue, Dec 22, 2015 at 3:03 PM, Marc Schwartz wrote:
>
>
don't
waste time on your query here.
Cheers,
Bert
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 Wed, Dec 23, 2015 at 1:30
,
Bert
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 Thu, Dec 24, 2015 at 5:41 AM, REES T. (706713)
wrote:
> Hi there,
>
> Fi
... Nor is this forum usually appropriate for questions about
statistical methodology (your model building remark at the end). I
suggest you try a statistical forum like stats.stackexchange.com for
that instead.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people
"Maybe you shall spend some time reading R intro manual which can
serve you as an excellent starting point to learn R. Although it has
one hundred pages it is quite readable and you may find it as a best
present you found under Christmas tree."
Fortune nomination!
Cheers,
Bert
B
Try
d= data[ ,i]
instead of d= data[i]
in your function. If that doesn't help, I think we would have to know
more about the structure of your data.
-- Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opu
to create a new matrix with e.g. 2 x 6 "positions" in each of which is
A, simply do
kronecker (matrix(1, nr = 2, nc=6), A)
or if you want to use the operator form:
matrix(1,nr=2, nc=6) %x% A
See ?kronecker
Bert Gunter
"The trouble with having an open mind is that people keep comi
y.
Cheers,
Bert
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 Thu, Dec 31, 2015 at 4:46 PM, Ragia Ibrahim wrote:
> Dear group
> I h
Still not clear (to me).
But perhaps FAQ 7.16. You need to explicitly print or use echo = TRUE
when sourcing from a file.
Cheers,
Bert
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
Quote the unicode -- it's just a way to write a text character:
bquote(AUC[0-infinity]~(ng/ml~"\u25CF"~hours)
Cheers,
Bert
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
details on
what "derived empirically" means.
Cheers,
Bert
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 Sun, Jan 3, 2016 at
Sorry -- neglected to reply to the list. -- Bert
-- Forwarded message --
From: Bert Gunter
Date: Thu, Jan 7, 2016 at 10:38 AM
Subject: Re: [R] exact trend test (enumerate all possible contingency
tables with fixed row and column margins)
To: li li
I do not know whether there
with the package
will have to reply. I am not.
Cheers,
Bert
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 Fri, Jan 8, 2016 at 5:24 PM, li
A statistics, not an R question, and hence OT here.
However, look at the CRAN Time Series Task View and/or post on a
statistics site like stats.stackexchange.com
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it.&quo
I think you're looking for ?bquote .
Something like this should give you the idea:
nm <- "yvar"
bquote( .(y)~x, list(y = as.symbol(nm )))
The key is distinguishing between the character string "yvar" and the
(language) object, as.symbol("yvar").
Cheer
Inline.
-- Bert
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 Wed, Jan 13, 2016 at 2:55 PM, Luigi Marongiu
wrote:
> Dear all,
&
FAQ 7.31 maybe. (Unless special software is used) Only a finite number
of numbers can be represented exactly on a computer.
Cheers,
Bert
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
ilsdatasets toolsstatsgraphics splines grid
methods base
other attached packages:
[1] nlme_3.1-122lattice_0.20-33
loaded via a namespace (and not attached):
[1] grDevices_3.2.3 strucplot_0.5
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sti
one. The obvious message,
though, is: don't do this!
I suspect there is a reference to this somewhere in the R Language
definition or elsewhere, and if so, I would appreciate someone
referring me to it -- RTFM certainly applies!
Cheers,
Bert
Bert Gunter
"The trouble with having an op
Thanks to both Bill and Duncan for their help. As I said, my
mal-understanding of the syntax.
Best,
Bert
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" co
But DO NOT DO ANY OF THIS.
See the Robust Task View on CRAN and use the functionality of the
robust or robustbase package. Trimmed/winsorized means are ancient
technology; there is much better available today (and for the last 40
or so years, in fact).
Cheers,
Bert
Bert Gunter
"The tr
FAQ 7.31
-- Bert
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 Fri, Jan 22, 2016 at 7:46 AM, li li wrote:
> Hi all,
> I
certainly unclear to me.
Cheers,
Bert
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 Mon, Jan 25, 2016 at 12:12 PM, Muhammad Kashif w
nyone who needs to make effective use of the language
needs to put in the time to learn. I would say that this is the case
even those who prefer to use the tools provided by Hadley Wickham's
plyR packages or similar tools that may exist in others (e.g.
data.table).
Cheers,
Bert
Bert Gunter
tting reliable advice on such matters there.
So you should sign up and post to R-sig-mixed-models on these topics
rather than here.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley
:
names(grDevices::pdfFonts())
Another possibility is that you are using the wrong encoding.
Unfortunately, this is beyond my ability to help you with, but perhaps
reading the Help on the encoding argument and related links might get
you the necessary info.
Cheers,
Bert
Bert Gunter
"The tr
ame (which is also a list) of i,j,k,index combinations:
z <- expand.grid(i=1:2, j= 1:2, k = 1:2)
## Use do.call() to feed the columns of z to mapply
yourarray <- array(do.call(mapply,c(prod,z)),dim=c(2,2,2))
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people
cient explanation and examples to get going. Feedback, suggestions,
reports of bugs or any other infelicities are welcome.
Cheers,
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 "Bloo
Did you not read about the "subset" argument of lm() ?
Cheers,
Bert
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 Wed, Feb 3,
.
Cheers,
Bert
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 Wed, Feb 3, 2016 at 10:23 AM, Amoy Yang via R-help
wrote:
> population is the
Have you looked here (found immediately by an internet search!)?
https://cran.r-project.org/web/packages/LDheatmap/vignettes/LDheatmap.pdf
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (ak
The problem in the original post is, as clearly stated , the ":=",
which is some other language, not R. From which I infer that the OP
needs to spend some additional time with an R tutorial or two to learn
R.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is t
c questions like the OP's can be found more
quickly and easily through such means; and with the added benefit of
providing examples and connections to related material. Of course, if
**after** consulting such resources questions still remain, asking
here is usually helpful.
Cheers,
Bert
Bert
- with(znew,znew[order(Cluster), ])
Again, while I think this does what you want, someone else may provide
something slicker. Or simpler. But the order() function is still very
useful to know about anyway for this sort of thing.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is
5800 **not 5, 800** , no commas and no spaces.
Please read an R tutorial or two to learn how to properly work with R
if this is not merely a typo.
-- Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (ak
ll[-match("data",names(mcall))]
} else env <- NULL
mcall[[1]] <- plot.default
eval(mcall,envir=env,enclos=enc)
}
Cheers,
Bert
P.S. I would welcome more elegant solutions (especially if this one
doesn't work right!)
Bert Gunter
"The trouble with having an open min
Spencer, et. al.:
As I suspected, my previous "solution" was pretty stupid. Here is, I
think, the "right" way to
go about it:
plotxy <- function(x,...){
mcall <- match.call(expand.dots=FALSE)
mcall[[1]]<- plot.default
eval(mcall)
}
Best,
Bert
Bert Gun
If you look at the code for plot.default() and then
grDevices:: xy.coords, you'll see how the call is parsed and evaluated
in the appropriate environment. My code above is trying to do the
same thing, though I may still have holes.
Cheers,
Bert
Cheers,
Bert
Bert Gunter
"The troub
Google! (e.g. on "R Language tutorials")
Some specific recommendations can be found here:
https://www.rstudio.com/resources/training/online-learning/#R
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it
, re-post.
(Ignore this advice if John or others with greater expertise respond.
Mine is a general prescription only).
Cheers,
Bert
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 &qu
f it works.
Cheers,
Bert
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 Wed, Feb 10, 2016 at 1:08 PM, David Winsemius wrote:
>
>> On
repeated for as many somedats as you like.
Note that this is still a loop (via apply), however, so it may not
satisfy your efficiency needs.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breat
You are working in fantasyland. Your density is nonsense.
Please see FAQ 7.31 for links to computer precision of numeric calculations.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley B
Define "truncated." (It is often confused with "censored".) As
stated, it seems to me that you already have the answer. Do you have
data? -- i.e. what do you mean by "parameters" ?
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that pe
Not an answer
But note that your several stopifnot() statements can be combined into
1. See ?stopifnot .
Cheers,
Bert
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 &qu
Yes, but colMeans, rowMeans, pmax, pmin , etc. are *much* faster.
Cheers,
Bert
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 Fri, Feb
posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
--
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus
t.org mailing list -- To UNSUBSCRIBE and
> more, see 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.
>
>
ect.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
--
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkel
urces/training/online-learning/#R
Bert
On Tuesday, February 16, 2016, Moss Moss wrote:
> I want to generate data from a location model for my thesis.
> Please, what do you mean by "homework policy".
>
> Help me to run R-programming in my system.
>
> On 2/17/16, Be
t.org mailing list -- To UNSUBSCRIBE and
> more, see
> 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.
--
Bert Gunter
"The trouble
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and
> more, see
> > 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.
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and
> more, see
> 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.
>
--
Bert Gunter
&
sic question.
> Thank you
>
> [[alternative HTML version deleted]]
>
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and
> more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the postin
Inline.
-- Bert
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 Tue, Feb 23, 2016 at 2:42 AM, wrote:
> Dear R community,
> thi
You are probably overfitting.
This *IS* a statistical and not an R issue, and so does not belong
here. You MAY get useful help by posting on the R-SIG-mixed-models
list, however. But PLEASE post in *plain text*, not HTML, as the
posting guide asks.
Cheers,
Bert
Bert Gunter
"The trouble
?update.packages
Cheers,
Bert
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 Tue, Feb 23, 2016 at 11:47 PM, Sandeep Singha
wrote:
&g
Almost surely no.
You are confusing "&&" with "&"
?"&"
-- Bert
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&qu
I would have assumed that age, etc. were vectors; but that's why I
said "almost" surely.
-- Bert
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&q
1301 - 1400 of 5186 matches
Mail list logo