similar to: LIVE, ONLINE COURSE: Using R Software for Academic Research Analyses

Displaying 20 results from an estimated 1000 matches similar to: "LIVE, ONLINE COURSE: Using R Software for Academic Research Analyses"

2011 Apr 17
0
NEW ONLINE R COURSE: Fundamentals of Using R
EARLY REGISTRATION ENDS APRIL 22 The non-profit organization *Information Institute* ( http://www.information-institute.org) and faculty from Virginia Commonwealth University (VCU) are offering a live, interactive, synchronous online course entitled Fundamentals of Using R. The early registration cost (through April 22) for the 14-hour, 5 week course is $195 (student); $250 (faculty); and $295
2011 May 03
0
NEW SUMMER ONLINE R COURSE: Fundamentals of Using R
NEW SECTION BEGINS JUNE 1 (11AM-2PM ET) AND MAY 27 (6PM-9PM ET) The non-profit organization Information Institute ( http://www.information-institute.org) is offering a live, interactive, synchronous online course entitled Fundamentals of Using R. The registration cost for the 14-hour, 5 week course is $225 USD (student); $295 (faculty); and $325 (practitioner). All live, interactive class
2011 Oct 03
0
Online Course PLS and R and free, public videos
The Georgia R School (http://georgia-r-school.org) is a non-profit educational organization. With faculty from Virginia Commonwealth University, we are conducting live, interactive, synchronous month-long online courses on PLS path modeling and R statistical software during October and November. All live courses are recorded (all audio and video) and the permanent recordings are also provided to
2009 Oct 10
1
lattice auto.key drop unused levels
The following code produces a legend ("key") that mentions the unused levels of Block. library(MEMSS) xyplot(yield~nitro, subset=(Block=="I" | Block=="II"), data=Oats, group=Block, auto.key=T) and adding "drop.unused.levels=T" does not fix it. And in fact even the following does not solve the problem: xyplot(yield~nitro,
2009 Jul 26
1
obtain names of variables and data from glm object
Suppose we have some glm object such as: myglm <- glm( y ~ x, data=DAT) Is there an elegant way--or the "right way" within the R way of thinking--to obtain the names of the response variable, the predictor variables, and the dataset, as character strings? For instance, suppose the "right way" was to use the (currently fictitious) functions theresponse(), thepredictors(),
2009 Oct 12
3
xyplot does not find variable in data
When we call a lattice function such as xyplot, to what extent does the "data" designation cause the function to look inside the "data" for variables? In the examples below, the "subset" argument understands that "Variety" is a variable in the data. But the "scales" argument does not understand that "nitro" is a variable in the data.
2006 Jun 30
0
SAS Proc Mixed and lme
I am trying to use lme to fit a mixed effects model to get the same results as when using the following SAS code: proc mixed; class refseqid probeid probeno end; model expression=end logpgc / ddfm=satterth; random probeno probeid / subject=refseqid type=cs; lsmeans end / diff cl; run; There are 3 genes (refseqid) which is the large grouping factor, with 2 probeids nested within each refseqid,
2009 Aug 06
1
specify lattice black-and-white theme
Is there a simple way to specify a theme or trellis (lattice) parameters so that, in a multipanel (conditioned) plot, there is no color and in the strips there is no shading? This is the effect achieved on page 124 of Deepayan Sarkar's "Lattice" (figure 7.2). I managed to trick lattice into making a grayscale plot on my interactive display as follows: > graphics.off() >
2009 Aug 07
1
lattice: simultaneously control aspect & outer whitespace
Suppose we wish to achieve the following three aims: (1) Control the aspect ratio of our plot (i.e., tweak this till it looks great) (2) Save the plot as a PDF with zero or minimal white space outside it. (3) Preserve this in code, so that in the future the exact same plot can be reproduced by simply sourcing the code. I can almost achieve (1) and (2) on my MacBook Pro by pointing and clicking,
2006 Jun 30
1
lme and SAS Proc mixed
I am trying to use lme to fit a mixed effects model to get the same results as when using the following SAS code: proc mixed; class refseqid probeid probeno end; model expression=end logpgc / ddfm=satterth; random probeno probeid / subject=refseqid type=cs; lsmeans end / diff cl; run; There are 3 genes (refseqid) which is the large grouping factor, with 2 probeids nested within each refseqid,
2008 Jul 17
2
nested calls, variable scope
Below is an example of a problem I encounter repeatedly when I write functions. A call works at the command line, but it does not work inside a function, even when I have made sure that all required variables are available within the function. The only way I know to solve it is to make the required variable global, which of course is dangerous. What is the elegant or appropriate way to solve
2009 Aug 03
3
session logging
Consider all the text that one sees on the console during an R session. Is there a way, within R, to make all this text--both the "output" and the "messages"--automatically get copied to a single text file, in addition to seeing it on the console? If I remember to save the console to a file at the end of my R session, that does it. But (1) That requires pointing and
2007 Oct 05
3
Mac GUI and .Renviron
The .Renviron and .First functions do not seem to work the same way on a Mac OS 10.4 as on a Windows XP machine. From working in Windows I am used to creating a new directory for each data analysis project. In the new directory I place First, an .Renviron file consisting of the following text: R_HISTFILE="history.txt" R_HISTSIZE=1000000 Second, an .RData file containing a .First
2009 Oct 28
3
variable labels to accompany data.frame
Often it is useful to keep a "codebook" to document the contents of a dataset. (By "dataset" I mean a rectangular structure such as a dataframe.) The codebook has as many rows as the dataset has columns (variables, fields). The columns (fields) of the codebook may include: ? variable name ? type (character, factor, integer, etc) ? variable label
2013 Dec 02
2
plus/minus +/- in factor; not plotmath not expression
I want to put the "plus or minus" symbol into a character variable, so that this can be turned into a factor and be displayed in the "strip" of a faceted ggplot2 plot. A very nice solution, thanks to Professor Ripley's post of Nov 16, 2008; 3:13pm, visible at http://r.789695.n4.nabble.com/Symbols-to-use-in-text-td874239.html and subsequently
2019 Sep 11
4
Need to update gcc to version >=6 on CentOS 7 ?
$ sudo yum install devtoolset-7 Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.vcu.edu * epel: mirror.siena.edu * extras: mirror.vcu.edu * updates: mirror.vcu.edu No package devtoolset-7 available. Error: Nothing to do On Wed, Sep 11, 2019 at 12:17 PM Gordon Messmer <gordon.messmer at gmail.com> wrote: > > On 9/11/19 9:05 AM,
2009 Aug 05
4
multiple lty on same panel in xyplot
I would like to use lattice graphics to plot multiple functions (or groups or subpopulations) on the same plot region, using different line types "lty" or colors "col" to distinguish the functions (or groups). In traditional graphics, this seems straightforward: First plot all the data using 'type="n"', and subsequently execute a series of "points"
2019 Sep 11
0
Need to update gcc to version >=6 on CentOS 7 ?
Ooops! for to: $ sudo yum install centos-release-scl-rh On Wed, Sep 11, 2019 at 12:50 PM John Chludzinski <john.chludzinski at gmail.com> wrote: > > $ sudo yum install devtoolset-7 > > Loaded plugins: fastestmirror, langpacks > Loading mirror speeds from cached hostfile > * base: mirror.vcu.edu > * epel: mirror.siena.edu > * extras: mirror.vcu.edu > *
2008 Jul 24
0
OT: course in research administration
I'm currently enrolled in the distance education masters degree program in statistics at Texas A&M University. I'm hoping the program will help me develop skills useful in advancing my primary care research endeavors. Having a great time so far, learning a lot. I have one semester in which to take a non-statistical elective. What I'd like to learn in that semester is some of
2010 Mar 02
1
Installation problem with 2.10 and Solaris 10 (PR#14227)
Full_Name: John Noble Version: 2.10 OS: Solaris 10 SPARC Submission from: (NULL) (128.172.190.27) The make of Recommended fails. All sections of Make work up to this point and the compiled version of R appears to be correct. Only when adding the recommended modules does the problem appear. The best I can figure the problem appears to be related to the fact that gzip will not decompress