Displaying 20 results from an estimated 13000 matches similar to: "re: GUI's for teaching"
2002 Jun 25
4
re: GUI's for teaching
Dear All,
This is a question to sound out possibilities.
I am with the Faculty of Natural and Agricultural Sciences at the
University of Western Australia, representing a few of the more
statistically minded in the faculty. Essentially, there have been
problems in the past with software support, changing over statistical
software, and paying lots of money for it. In R you have an advanced
2002 Jun 26
1
re: GUI's for teaching
Definitely 2 camps on this issue; so why not compromise with a drop-down
menu for the most frequently used processes, the user responds with the
necessary parameters for his choice, and R then writes the source statements
on the terminal and executes them. The user follows the familiar gui
procedure, is thereby automatically introduced to the command statements
involved, and R's
2002 Jun 26
6
GUI's for teaching
Dear All,
There is no advantage of GUI over CLI, IMO. The real
issue is the answer to the questions: "What should I
do next?" or "What am I allowed to do here?"
A "nice" interface, not necessarily GUI, will offer
friendly answers: "I was expecting you to do _this_"
or "In this situation you are allowed to do _these
things_"
You see, it's all
2002 Jul 11
3
R GUI For Which User?
I also agree with Philippe Grosjean that there is a need to investigate the
effects of different types of GUIs on software "usability". To do that,
however, there is a need to develop a set of appropriate metrics, and to
understand that the appropriateness of a given metric (and ultimately a given
type of GUI) is likely to be conditional on the type of user.
My sense is that the
2000 May 02
16
R Documentation(s)
Dear all,
I am interested by the various messages sent to the r-help mailing list
these last few days about documentation on R. Yet, there are a lot of
issues actually open on this topic, and it is not clear to me what is the
"urgent need for documentation" on R.
R comes with the 'Introduction to R' by Venables et al. I recommend the
colleagues and students in my lab who are
2002 Jun 28
0
dataplot oen source? (was: RE: FW: re: GUI's for teaching)
IIRC, the license stated in the source code of dataplot is rather
restrictive. I don't think one is allowed to use the source as can be done
with GPL code.
Cheers,
Andy
> -----Original Message-----
> From: Brett A Magill [mailto:Brett.Magill at slps.org]
> Sent: Thursday, June 27, 2002 1:14 PM
> To: r-help at stat.math.ethz.ch
> Subject: [R] FW: re: GUI's for teaching
2002 Jun 26
0
GRETL (GUI's for teaching)
A nice free software with a GUI-interface (which can be linked to
R, BTW) is GRETL: http://gretl.sourceforge.net/ . Some people
may find it useful for basic stuff. Regards, Francisco.
--
Francisco Cribari-Neto voice: +55-81-32718420
Departamento de Estatistica fax: +55-81-32718422
Universidade Federal de Pernambuco e-mail: cribari at de.ufpe.br
Recife/PE, 50740-540,
2002 Jun 27
0
FW: re: GUI's for teaching
Have a look at the GUI on dataplot, NIST's plotting software. It is implemented in tcl/tk. The site states it is "public domain software" -- open source? I can't find anything about the license. In any case...
http://www.itl.nist.gov/div898/software/dataplot/
Brett A. Magill, Evaluator
Research, Assessment, and Evaluation
Saint Louis Public Schools
Brett.Magill at
2001 Nov 10
0
Summary: Teaching with R a quick survey.
Hi
I would like to start by thanking everyone that replied. Thank you for the
information, and for the comments about how or why you use it and thankx for
the encouragement re my talk....
Please note that I do not claim to have ellicited a reply from all users of
R, this is a quick survey not a census.
I have tried to break the responces down to the following categories:
Where: (hopefully
2006 Dec 10
3
DOE teaching suggestions?
Dear R People:
I will be teaching an undergraduate Design of Experiments class
in the Spring Semester. It will be very much an applied course.
My question, please: has anyone used R for a course like this, please?
I've tried Rcmdr for a regression course and just plain command
line for a time series course.
Should I use Rcmdr, or teach them to use the command line, OR is there
something
2002 May 03
2
an info on 3d representation
Dear list,
sorry to waste your time. I downloaded R and I like it very much.
However, my main interest is in plotting 3D graphics form imported data
(points and lines in a 3d space). I imported data in a very elegant way
but I wasn't able to find in R something similar to the simple "splot"
function of WGNUplot (I don't need persp, image, contour: my values are
not
2002 Jan 08
3
Finding functions in uninstalled libraries
(Many thanks to David Barron & Jonathan Baron for pointing me to 'recode' in
the 'car' package).
I think I've been told this before, but how do I search for a
function/keyword in libraries I don't yet have installed?
(ie. on the CRAN site I tried the search engines with "recode" etc., but
didn't pick up the car package this way)
Stuart
Dr Stuart Leask
2011 Jul 17
3
?Accuracy of prop.test
I have just joined this list (and just started using R), so please
excuse any etiquette breaches as I do not yet have a feel for how the
list operates.
I am in the process of teaching myself statistics using R as my utility
as my ultimate goals cannot be satisfied by Excel or any of the plug-ins
I could afford.
I am currently looking at chap12 page 552 of Weiss's Introductory
Statistics
2002 Jan 18
1
RE: z-scores for different factor levels
Hi Stuart,
I often use this small function
standardize <- function(x) ( x - mean(x, na.rm=T) ) / sqrt(var(x,
na.rm=T))
to standardize variables.
You should be able to use this to do what you want by splitting the data
frame into sections based on the factor level, using standardize() to create
a new variable in each section, then paste the data frame back together.
Something like:
#
2002 Jan 09
1
value labels from read.spss()?
>From owner-r-help at stat.math.ethz.ch Wed Jan 9 10:08:44 2002
>
>Does anyone know how to access/list the value labels stored in a SPSS .sav
>file?
>At the moment I can read in variables using read.spss() (foreign package),
>but have to power up SPSS to check value labels.
>
>Stuart
There may be a solution to this in R, and I would love to hear
it, but I was just faced
2003 Feb 19
4
Help in separate window under X11
Dear R users,
Is there the possibitily in R under X11 to get (after typing help(...)
command) separate help window, as it is in Windows version?
Best wishes,
=================================
Dr. Alexey B. Shipunov
Section of Molecular Systematics
Jodrell Laboratory
Royal Botanic Gardens, Kew,
Richmond, Surrey, TW9 3DS, U.K.
e-mail: a.shipunov at rbgkew.org.uk
2002 Jan 06
2
Passing names of variables to functions
Hi,
I am still new to R and have a programming question. I have created a
small function which takes a parameter. In the function I want to be able
to refer to the names of the variables sent to the function (specifically
I want to be able to use the name of the variable given to the function in
an output table). For example, in the following (fictional) function I
want some way of printing
2006 May 05
3
OT: DOE - experiments for teaching
Hi,
I'm sorry for this not being related to R but I think this is a good
place to ask. I'm looking for DOE examples(experiments) that can be done
at home or in class, such as Paper Helicopter, Paper Towel etc.. I'm
thankful for any comment.
Thomas
[[alternative HTML version deleted]]
2006 Jul 30
3
main= bquote(paste("Results for ", beta, "3", ==.(b1)))) doesn't work.
Hi,
I need to plot the beta as the symbol, followed by the index 3 as the title of a graph.
This code works> main= bquote(paste("Results for ", beta ==.(b1))
but I also need the index 3.
I tried (simplified):
>plot(x,y, main= bquote(paste("Results for ", beta, "3", ==.(b1))))
and a few other versions, but I can not get it to run properly.
Any help would
2006 Nov 08
6
Making a case for using R in Academia
Hello, new to the list, first message.
This question perhaps might be more appropriate to R-sig-teaching,
and I'd be happy to take it there if this is not the right place for it.
I am teaching applied statistics at a small liberal arts college with
limited resources, and we are currently using SPSS for our courses.
Mainly the reason for this, as I understand it, is that this is what