Displaying 20 results from an estimated 500 matches similar to: "Generating a value"
2007 Nov 30
2
Quantiles and QQ plots
I have 20 variables:
5,9,6,1,5,9,7,4,5,6,3,2,4,8,9,6,1,8,4,8
How do I calculate the corresponding quantiles from a normal distribution
with the same mean and variance as the sample?
Also, how do I draw a QQ plot of the data?
Thanks for any help!
--
View this message in context: http://www.nabble.com/Quantiles-and-QQ-plots-tf4925742.html#a14097909
Sent from the R help mailing list archive at
2008 Jan 02
1
Password protect a queue from callers?
Hi, We currently testing a trixbox/asterisk installation and have used Freepbx to set-up and configure the box and it is running tremendously well. We have an generic IVR configured to which can transfer callers to a child IVR. This child IVR has a number of options to send the caller off to various queues. However we would like to protect some of the options with a password/pin number so that
2007 Jul 26
1
Lohan the observable
Sorry, that name is a misnomer. However, I was excited to find that Ruby
has a built in Observable module and I''m pretty bored, so I apologize in
advance....
require ''observer''
# one who is observed
class Celebrity
include Observable
attr_accessor :name
attr_reader :is
def is=(val)
@is = val
changed
notify_observers(self)
end
end
# one who
2008 Jan 07
5
moving or running average
Hi all R users,
Can anyone please let me know how to do the moving average with R?
With regards,
Abu
_________________________________________________________________
Free games, great prizes - get gaming at Gamesbox.
2009 Aug 18
4
Transpose a dataset
Hi Everyone,
I have a dataset like this
mean sd 0% 25% 50%
75% 100% n
BODY TEMPERATURE 36.41099 0.4015699 35.1 36.22222 36.5
36.66667 37.1 89
DIASTOLIC BLOOD PRESSURE 73.60079 9.4656186 50.0 67.00000 73.0
80.00000 95.0 253
HEIGHT 171.94000 9.2011670 153.5 166.50000 173.0
176.25000 190.0
2008 Sep 24
1
possible interesting R projects for undergrads
Dear R People:
I finally (Yay!) got R installed in a classroom!
Anyhow, I have a respectful request, please: could anyone recommend
some nice undergrad projects in R, please?
This is in a statistical computation class; first time being run.
Thanks,
Erin
--
Erin Hodgess
Associate Professor
Department of Computer and Mathematical Sciences
University of Houston - Downtown
mailto:
2003 Aug 21
3
Diamond graphs
I apologise for starting a new thread, but we had a mail problem and I
don't have the original message to refer to.
Someone mentioned the new "Diamond Graphs" invented at Johns Hopkins.
I haven't see the August 2003 issue of The American Statistician yet,
but I _have_ read the press release.
The press release is a bit of a stunner. I quote:
"Who would have thought we
2003 Sep 25
1
Diamond graphs, again.
Some time ago I was allowed to discuss "Diamond Graphs", and whether
they would be useful in R, in this mailing list.
The August 2003 issue of The American Statistician has finally arrived
here and I have been able to read the article. A number of points of
interest arise.
1. The article is
"A Diamond-Shaped Equiponderant Graphical Display of the
Effects of Two
2018 Jan 03
1
summary.rms help
Dear All,
using the example from the help of summary.rms
library(rms)
n <- 1000 # define sample size
set.seed(17) # so can reproduce the results
age <- rnorm(n, 50, 10)
blood.pressure <- rnorm(n, 120, 15)
cholesterol <- rnorm(n, 200, 25)
sex <- factor(sample(c('female','male'), n,TRUE))
label(age) <- 'Age'
2007 Oct 23
0
Autocorrelation Matrix
Hi,
I am trying to calculate the autocorrelation matrix for an input matrix with the size n*m where n=7 (the dimensionality of my input feature vectors) and m being the time. Thus one could think of the input data as a 7-dimensional time-series. Does anyone know of any way to calculate the autocorrelation matrix for such an input? I tried various functions, but none give me a matrix that returns
2007 Sep 28
3
orientlib
Hi All user,
I have been using R-2.5.1. dose orientlib support this version? I would like to try. it.
I have been wondering how to install the library.
With regards,
abu
_________________________________________________________________
Celeb spotting ? Play CelebMashup and win cool prizes
2002 Sep 13
1
design package (plot problems)
Hi,
just making some experiments with
design library i get an error if
i want plot(fit) - show below from
onlineHelp !?
..perhaps is here another mask problem?, but
label from xtable which was my first problem
is now off !
Thanks for advance & regards,
Christian
$ n <- 1000 # define sample size
$ set.seed(17) # so can reproduce the results
$ age <- rnorm(n, 50, 10)
2008 May 29
2
Troubles plotting lrm output in Design Library
Dear R-helpers,
I'm having a problem in using plot.design in Design Library. Tho
following example code produce the error:
> n <- 1000 # define sample size
> set.seed(17) # so can reproduce the results
> age <- rnorm(n, 50, 10)
> blood.pressure <- rnorm(n, 120, 15)
> cholesterol <- rnorm(n, 200, 25)
> sex <-
2003 Jul 30
16
Need help
I do part time consulting work. I need to setup an asterisk system to
allow me to record both inbound and outbound calls to clients. I have one
client that is just a PITA. The client has changed their mind three times
so far and we are at step one.
I have a spare slackware box and a seperate phone line for the consulting
work. I have MCI Neighorhood as my carrier.
What I need to know is:
1.
2005 Aug 22
1
How to add legend of plot.Design function (method=image)? (if (!.R.) )
Hi,
When running
z <- plot(fit, age=NA, cholesterol=NA, perim=boundaries, method='image')
Legend(z, fun=plogis, at=qlogis(c(.01,.05,.1,.2,.3,.4,.5)),
zlab='Probability')
And after pointing the cursor to the plot() screen in R, I obtain the
following message:
Using function "locator(2)" to place opposite corners of image.legend
Error in
2009 Mar 11
1
regsubsets() [leaps package] - please share some good examples of use
Hello dear R-help members,
I recently became interested in using biglm with leaps, and found myself
somewhat confused as to how to use the two together, in different settings.
I couldn't find any example codes for the leaps() package (except for in the
help file, and the examples there are not as rich as they could be). That
is why I turn to you in case you could share some good tips and
2010 Aug 14
1
How to add lines to lattice plot produced by rms::bplot
I have a plot produced by function bplot (package = rms) that is
really a lattice plot (class="trellis"). It is similar to this plot
produced by a very minor modification of the first example on the
bplot help page:
requiere(rms)
n <- 1000 # define sample size
set.seed(17) # so can reproduce the results
age <- rnorm(n, 50, 10)
blood.pressure <- rnorm(n, 120,
2006 Mar 27
6
Problem installing Rails
Hi
I am getting the following error when i tried to install rails in
windows using command prompt....
Attempting remote installation of ''rails''
Updating Gem source index for: http://gems.rubyforge.org
ERROR: While executing gem ... (Gem::RemoteSourceException)
Error fetching remote gem cache: getaddrinfo: no address associated
with hostname.
There are proxy settings in
2008 Jun 13
4
Sweave: looping over mixed R/LaTeX code
Dear guRus,
I would like to loop over a medium amount of Sweave code, including both R and LaTeX chunks. Is there any way to do so? As an illustration, can I create a .tex file like this using a loop within a .Rnw file, where the "1,2,3" comes from some iteration variable in R?
################################################
\documentclass{article}
\usepackage{Sweave}
\begin{document}
2010 Oct 06
2
A problem --thank you
dear:teacher
i have a problem which about the polr()(package "MASS"), if the response must have 3 or more levels?
and how to fit the polr() to 2 levels?
thank you.
turly yours
[[alternative HTML version deleted]]