Search Archives
Search tips
from:Name
Search by author name, e.g. from:Duncan Murdoch
"exact phrase"
Match an exact phrase
word1 word2
Match messages containing both words
Date range
Use the date pickers to filter results to a time period
Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.
What do you mean "Rounded"? What do you expect, what do you get instead? ? > On Jul 22, 2023, at 10:40, Thomas Subia via R-help <r-help at r-project.org> wrote: > > Colleagues, > Thanks for the update. > My colleagues...
Read the posting guides and do not post in HTML. Type ?pdf at the console prompt. Read the help text. The parameter "paper" specifies paper size and orientation. Portrait is the default. B. On Jul 9, 2015, at 8:14...
I have been trying to create a data frame from some structured text in a single expression. Reprex: nouns <- as.data.frame( matrix(c( "gaggle", "geese", "dule", "doves", "wake", "vultures" ), ncol = 2, byrow = TRUE), col.names = c("collective", "category") ) But...
See here: http://www.r-bloggers.com/search/twitter On Apr 16, 2016, at 2:58 PM, Ragia . <ragia11 at hotmail.com> wrote: > > Dear group, > I want to download text of weets and other data such as user id or...
Like this? x <- c(-2.5, -1.3, 0.6, 0.8, 2.1) y <- c(0.3, 1.9, 1.4, 0.7, 1.1) plot(x, y, ylim=c(0, 2), axes=FALSE, asp=1.25) box() abline...
Have a look at the functions available in the igraph package. B. > On Jul 13, 2017, at 11:08 PM, SEB140004 Student <chinyi at siswa.um.edu.my> wrote: > > Greeting. > > Dear Mr/Mrs/Miss, > > I want to create a network...
x <- rep(NA, 200) For all cases I can think of, that is enough. If you MUST have a matrix with one column and two hundred rows, set: dim(x) <- c(200,1) B. On Sep 17, 2015, at 9...
Typo: "DescTools" ? On 2014-04-08, at 3:13 PM, Jos? Trujillo wrote: > What's the problem with this:? > > package ?DscTools? is not available (for R version 3.1.0 beta) > > > > El 08/04/14 19:42, Marc Schwartz escribi...
Yes. > On Mar 31, 2017, at 11:53 PM, Art U <art.tem.us at gmail.com> wrote: > > Hi, > I'm trying to create number of vectors, part of them are binary and part > are continuous. Is there a way...
Large packages sometimes mask each other's functions and that creates a headache, especially for teaching code, since function signatures may depend on which order packages were loaded in. One of my students proposed using the idiom <function> <- <package>::<function...
A simple Google search with "mtcars dendrogram" will find many explicit examples for you. B. On Nov 27, 2014, at 2:54 PM, BRC <brc.khi at gmail.com> wrote: > I remembered that I had seen instruction to store mtcars...
Fie, knave, dost thou bid us do thine homework! gsub("[^A-Za-z]", "", <string>) > On Apr 10, 2017, at 7:11 PM, Olu Ola via R-help <r-help at r-project.org> wrote: > > Hello,I have a column of...
Daniel - a simple Google search for "r programme to run a non stationary time series data" turns up a large number of relevant hits, including a task view. What have you tried that did not work for you? B. On...
I can't remember having seen my students write code that runs correctly on one platform but not the other. Obviously under the hood there are significant differences, but as far as code goes, R seems quite foolproof. There are...
Does length(getSheets(loadWorkbook("las.xlsx")) give you the index you need? (Untested). B. On Apr 17, 2016, at 9:43 AM, Val <valkremk at gmail.com> wrote: > Hi all, > > I am trying to read data from a particular excel...
... as in: the png exists in a directory that is accessible to the server? That would be as simple as creating a HTML document with the following contents: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3...
> a <- c("<0.1", NA, 0.3, 5, "Nil") > a [1] "<0.1" NA "0.3" "5" "Nil" > b <- as.numeric(a) Warning message: NAs introduced by coercion > b [1] NA NA 0.3 5.0 NA > b[! is.na...
I think the discussion in this thread https://stat.ethz.ch/pipermail/r-help/2014-April/368816.html applies exactly. See the parameter "prob" of sample. Cheers, B. On 2014-04-17, at 4:07 PM, Charles Determan Jr wrote...
Try: install.packages("deldir") library(deldir) ?deldir set.seed(16180) x <- runif(20); y <- runif(20); window <- c(0,1,0,1) tess <- deldir(x, y, rw = window) plot.deldir(tess, wpoints="real", wlines="tess") Cheers, Boris On 2014-05...
Does this entry on the Stargazer Cheatsheet come close enough to what you want? http://jakeruss.com/cheatsheets/stargazer.html#the-default-summary-statistics-table B. On Mar 6, 2016, at 3:34 PM, sbihorel <Sebastien.Bihorel at cognigencorp.com...
Can't find what you're looking for? Try searching with Google .