Skip to content

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.

365 results for “from:Boris Steipe”

plotly
Boris Steipe · Jul 22, 2023 · r-help

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

portrait diagram
Boris Steipe · Jul 9, 2015 · r-help

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

col.names in as.data.frame() ?
Boris Steipe · Oct 28, 2023 · r-help

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

Twitter Hashtag
Boris Steipe · Apr 16, 2016 · r-help

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

How do I move the horizontal axis in a plot so that it starts at the zero of the vertical axis?
Boris Steipe · May 31, 2015 · r-help

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

Conduct Network Analysis
Boris Steipe · Jul 14, 2017 · r-help

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

generate ordered categorical variable in R
Boris Steipe · Sep 17, 2015 · r-help

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

moses extreme reaction test
Boris Steipe · Apr 8, 2014 · r-help

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

Correlation between continuous and binary vectors.
Boris Steipe · Apr 1, 2017 · r-help

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

Risks of using "function <- package::function" ?
Boris Steipe · Nov 16, 2017 · r-help

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

Data mtcars
Boris Steipe · Nov 27, 2014 · r-help

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

Eliminating numbers, period, and space from a string
Boris Steipe · Apr 10, 2017 · r-help

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

PLEASE HELP ON R-LANGUAGE
Boris Steipe · Dec 1, 2014 · r-help

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

Difference between R for the Mac and for Windows
Boris Steipe · Mar 30, 2017 · r-help

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

Last
Boris Steipe · Apr 17, 2016 · r-help

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

R convert pdf/png to html
Boris Steipe · Jun 3, 2015 · r-help

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

Subset
Boris Steipe · Sep 22, 2017 · r-help

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

conditional probability removal
Boris Steipe · Apr 17, 2014 · r-help

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

Voronoi-Diagrams in R
Boris Steipe · May 14, 2014 · r-help

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

stargazer summary statistics by group
Boris Steipe · Mar 6, 2016 · r-help

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 .