similar to: further on use of expand.model.frame

Displaying 20 results from an estimated 10000 matches similar to: "further on use of expand.model.frame"

2002 Nov 02
1
problem with expand.model.frame
Dear R list members, I'm encountering a problem with expand.model.frame(): Suppose that I define the following simple function (meant just to illustrate the problem): > fun <- function(model){ + expand.model.frame(model, all.vars(formula(model))) + } > and I have the following model, created with an explicit data argument: > mod Call:
2002 Mar 29
0
use of expand.model.frame
Dear R-help list members, I'm encountering problems using expand.model.frame. To illustrate, consider the function > test <- function(model){ + expand.model.frame(model, "income") + } > The data frame Prestige (from the car library) has several variables, including prestige, income and education. I've attached this data frame >
2003 May 26
0
new cross-platform basic-statistics GUI
Dear R-announce list members, I've submitted a new package to CRAN, Rcmdr, which provides a cross-platform basic-statistics GUI for R. Rcmdr is based on the tcltk package and uses only standard Tk widgets. It therefore runs under Windows if Tcl/Tk support is installed with R, although it requires the single-document interface (SDI). I've tested Rcmdr with Windows and Red Hat Linux;
2003 May 26
0
new cross-platform basic-statistics GUI
Dear R-announce list members, I've submitted a new package to CRAN, Rcmdr, which provides a cross-platform basic-statistics GUI for R. Rcmdr is based on the tcltk package and uses only standard Tk widgets. It therefore runs under Windows if Tcl/Tk support is installed with R, although it requires the single-document interface (SDI). I've tested Rcmdr with Windows and Red Hat Linux;
2003 Nov 03
0
problem with fix() called from Rcmdr
Dear list members, I and my students have encountered an intermittent problem using the Rcmdr package (version 0.9-0) under Windows (with the SDI). The problem occurs both in versions 1.7.1 and 1.8.0 of R. The problem seems to occur only in the following context: The "Edit data set" button is pressed in the Rcmdr GUI. This executes the fix() function on the active data frame,
2002 Jun 07
0
new book on R and S-PLUS
Dear R and S list members: I've just published a book entitled An R and S-PLUS Companion to Applied Regression. The book introduces R and S-PLUS in the context of linear and generalized-linear models, and assumes familiarity with -- or a simultaneous course or text on -- these topics. I thought that the book might be of interest to the members of these lists or to their students. More
2003 Apr 26
0
new package: effects
I've uploaded to CRAN a new package called effects. The package contains functions for tabular or graphical display of terms in a linear or generalized linear model, and is particularly suitable for models that contain terms -- such as main effects and interactions, or polynomial regressors -- related by marginality (hierarchy). A draft paper describing the package is located at
2003 Apr 26
0
new package: effects
I've uploaded to CRAN a new package called effects. The package contains functions for tabular or graphical display of terms in a linear or generalized linear model, and is particularly suitable for models that contain terms -- such as main effects and interactions, or polynomial regressors -- related by marginality (hierarchy). A draft paper describing the package is located at
2003 Apr 14
1
suggested changes to summary.glm and summary.lm (PR#2776)
Something for the wish list (not really a bug): I was reminded of what I see as a problem with summary.glm last week when some of my students fell into a trap in a homework exercise, defining a logit model in which coefficients were aliased. When this happens in lm, summary.lm prints a message ["Coefficients: (1 not defined because of singularities)"], but summary.glm is silent. In
2002 Dec 10
0
RPgSQL, Rdbi.PGSQL, and Rdbi for Windows?
Dear list members, I wonder whether anyone has succeeded in building either the RPgSQL or the Rdbi.PGSQL and Rdbi packages for Windows. If so, would you be willing to share either the binary package(s) or instructions about how to set up the configure scripts? My preliminary efforts to get things going under Windows 2000 haven't met with much success. Thanks, John
2002 Nov 27
0
Problems with dialog boxes etc. in XEmacs/ESS for Windows
Dear list members, I'm experiencing a variety of intermittent problems with GUI-related commands (e.g., for dialog boxes and graphics-device windows) in R for Windows running under XEmacs/ESS. I'm using version 1.6.1 of R, version 21.4.9 of XEmacs, version 1.02 of ESS, and various versions of Windows, including 2000, 95, and 98SE. The problems don't occur in every circumstance,
2003 Apr 10
1
aliased coefficients in summary.glm
Dear list members, I was reminded of what I see as a problem with summary.glm this week when some of my students fell into a trap in a homework exercise, defining a logit model in which coefficients were aliased. When this happens in lm, summary.lm prints a message ["Coefficients: (1 not defined because of singularities)"], but summary.glm is silent. In both instances, the print
2005 Jul 20
0
Internationalization of the Rcmdr package
Dear r-devel list members, I've prepared a version of the Rcmdr package that uses the new tools for internationalization and localization in R 2.1.x. For the present, this is the development version of the Rcmdr package (1.1-0), available at <http://socserv.socsci.mcmaster.ca/jfox/Misc/Rcmdr/index.html>. There is currently a French translation provided with the package, courtesy of
2003 Jun 16
0
new version of Rcmdr package
Dear R-announce list members, I've uploaded to CRAN a new version of my Rcmdr package, which provides a cross-platform basic-statistics GUI for R. This version has a few new features, but mostly addresses some problems that arose with the original version. The relevant portion of the CHANGES file for the package is appended. As before, suggestions and reports of problems are appreciated.
2005 Apr 16
0
Version 1.0-0 of the Rcmdr package
Dear list members, I've just uploaded version 1.0-0 of the Rcmdr package to CRAN. For people who haven't seen the package before, the "R Commander" provides a basic-statistics graphical user interface to R, based on the tcltk package. The new version incorporates a number of improvements to the R Commander interface, as documented in the CHANGES file distributed with the
2005 Apr 16
0
Version 1.0-0 of the Rcmdr package
Dear list members, I've just uploaded version 1.0-0 of the Rcmdr package to CRAN. For people who haven't seen the package before, the "R Commander" provides a basic-statistics graphical user interface to R, based on the tcltk package. The new version incorporates a number of improvements to the R Commander interface, as documented in the CHANGES file distributed with the
2002 Mar 29
1
expand.model.frame fails when call creating model has no data (PR#1423)
I've encounted a problem using expand.model.frame. To illustrate, consider the function > test <- function(model){ + expand.model.frame(model, "income") + } > The data frame Prestige (from the car library) has several variables, including prestige, income and education. I've attached this data frame and fit the following model >
2005 Jan 01
1
Use of expand.model.frame()
Dear list members, I've encountered a problem using expand.model.frame() with a model specified without an explicit data argument. To illustrate (R 2.0.1 under Windows XP): > x <- rnorm(10) > y <- x + rnorm(10) > mod <- lm(y ~ x) > z <- 1:10 > expand.model.frame(mod, "z") Error in eval(expr, envir, enclos) : Object "y"
2002 Apr 08
2
user coordinates and rug plots in lattice graphics
Dear R list members, I'd like to produce rug plots at the bottom of panels in a trellis display (using the lattice package), but par("usr") doesn't return user coordinates for panels, and consequently rug fails, as the following example (suggested to me by Georges Monette) illustrates: > x <- rnorm(50) > y <- rnorm(50) > f <-
2003 May 06
4
bitmap images in tcltk
Dear R-help list members, I'm writing a package using tcltk. Thanks to Peter Dalgaard's excellent work on the tcltk package, almost everything has gone very smoothly. I'm stymied, however, by the following problem: I want to incorporate a bitmap image, stored as an xbm file, in a widget. To take a simple example, top <- tktoplevel() tkgrid(tklabel(top,