Displaying 20 results from an estimated 260 matches for "sais".
Did you mean:
said
2004 Mar 29
2
cut and factor
Eric,
thanks for quick reply. at first look I thought it is what I need,
but, unfortunately, it doesn't applied to original data - it
creates new data with loosing original indexes ! I want to keep indexes
of original data, but replace original data with $mids of corresponding
$breaks.
So, if I have z = 1:10, t=hist(z,plot=F)
> z
[1] 1 2 3 4 5 6 7 8 9 10
> t$breaks
[1] 0 2
2004 Mar 25
2
downloadable mailing list archive in mbox format
Hi there,
I'm beginner and would like to have mailing list archive to
read it offline and don't disturb mailing list.
I'd prefer mbox format.
Regards,
Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg at sai.msu.su,
2014 Mar 11
2
scatterplot3d blanco y negro
Hola,
tengo unos datos clasificados en tres grupos y quiero representarlos en
un cubo de forma que
cada grupo tenga un color/ símbolo distinto.
He conseguido hacerlo por colores (código) y me gustaría hacerlo
variando el 'pch'. He intentado hacerlo del mismo modo pero no funciona.
¿Se puede hacer?¿Puede ayudarme alguien?
Muchísimas gracias. Elvira.
library(scatterplot3d)
# dummy data
2005 Mar 12
2
data frame excerption
Hello,
is't possible to get excerptions of data frame using some contstraints,
something like q1 = q[q$V3<1] ?
Regards,
Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg at sai.msu.su, http://www.sai.msu.su/~megera/
phone:
2004 Apr 01
4
multiple plots problem
Hello,
for testing & learning purposes I create X11 device and specify layout like
layout(c(1,2,3), 3, 1), so I could play with parameters and see
several plots at the same time. That works fine until I try to create 4-th
plot - all other plots erased. Such behaviour isn't desirable for testing
purposes and I'm asking where to look to disable erasing other plots.
Regards,
Oleg
2012 Jun 01
2
Potencia para un U test
Hola.
Algún paquete que calcule la potencia de un U-test?
--
Antonio Maurandi
[[alternative HTML version deleted]]
2012 Jul 12
5
Taller: Iniciación a los gráficos estadísticos con R
Se podrá seguir el taller en la red a través de videoconferencia.
Objetivos del Taller: La elaboración de gráficos de calidad y, en
su caso, destinados a la publicación requiere una reflexión sobre
los métodos, tipos y soluciones que pueden emplearse desde R. En
este taller discutiremos los aspectos relacionados con los
procedimientos para realizar gráficos de
2014 Mar 18
2
Taller "Shiny. Entornos web con R" (presencial y streaming)
Desde la Sección de Apoyo Estadístico del Servicio de Apoyo a la
investigación (SAI) de la Universidad de Murcia, te invitamos al Taller
que impartiremos el próximo _26 de Marzo de 16h a 20h_, titulado :
/"Shiny. Entornos web con R"/
*
Lugar:* Aula *Bisbita* en la *Fac de Biología*, a las 16:30h
_Se podrá seguir en directo vía streaming_
Reserva tu puesto desde caldum
1999 Jan 24
0
Re: util-linux compromised
I just received the following letter:
Date: Sun, 24 Jan 1999 04:01:55 -0500 (EST)
From: John Stange <building@cs.umd.edu>
Subject: util-linux compromised?
I grabbed util-linux-2.9g yesterday from win.tue.nl, and discovered a
section of login.c that appears to send the host and uid of the user to a
hotmail address. I imagine this isn't a standard feature. :>
2012 Oct 04
7
Instalar dos versiones de R en linux
Hola a todos.
Un problema dos pasos.
Quiero desde RStudio trabajar con dos versiones de R (pongamos R2.13 y
R2.15) desde Linux, Ubuntu 10.04 (lucid).
Ya tengo instalada la R.2.15.1. Por defecto trabajo con ella.
Pasos que creo he de dar:
1º. Instalar dos versiones de R en la misma maquina. ¿Como se hace?. Me
estoy metiendo con el PATH y tal... hay algún protocolo clarito por ahí?
2º.
2003 Dec 20
4
IVR sample config?
Can someone point me to some reasonable example / starting point to implement
a basic IVR menu? Looking for something rather simple like the press 1 for
sales, 2 for tech support, and probably an option to list the voicemail
directory kind of thing. Nothing elaborate needed, just basic menu.
(Yes, I did look at the wiki and google searched for "ivr menu".)
2003 Mar 26
1
nls
Hi,
df <- read.table("data.txt", header=T);
library(nls);
fm <- nls(y ~ a*(x+d)^(-b), df, start=list(a=max(df->y,na.rm=T)/2,b=1,d=0));
I was using the following routine which was giving Singular Gradient, Error in
numericDeriv(form[[3]], names(ind), env) :
Missing value or an Infinity produced when evaluating the model errors.
I also tried the
2007 Mar 16
1
Two MGE devices
Hello,
I have two SAIS connected to one linux box. I want to monitorize the two
sais, but the NUT only can monitorize ONE. I configure the port in auto
in ups.conf but it only see one.
[MGE1]
driver = newhidups
port = auto
[MGE2]
driver = newhidups
port = auto
MGE1 and MGE2 say the sa...
2009 Jul 22
0
Attended transfer and 'pbx-invalid' - 1.4.26
Hi,
I've created a tiny dialplan to test the return of a call on transfers,
like this: (I had to use the DEVSTATE backport here)
[phones]
exten => _12XX,1,Dial(SIP/${EXTEN},6,tT)
exten => _12XX,n,GotoIf($[ "x${BLINDTRANSFER}" = "x" ]?noBT)
exten => _12XX,n,Set(DIALRET=${CUT(BLINDTRANSFER,-,1)});
exten => _12XX,n,Goto(dRet)
exten => _12XX,n(noBT),GotoIf($[
2010 Jun 27
0
Rails layout generator not doing what the documentation sais it should be doing?
Hello,
I''ve just started playing around with the Rails 3.0.0.beta and I came
across some seemingly strange behaviour, where I expected:
"In previous versions of Rails, the rails generate scaffold command
would automatically create a controller specific layout, like app/
views/layouts/posts.html.erb, for the posts controller. However this
has been changed in Rails 3.0. A application
2010 Sep 22
2
Modelo de Brunner-Langer para medidas repetidas..?
Alguien conoce este un test no paramétrico que se llama de
Brunner-Langer model para dependent data, también conocido como modelo
longitudinal?
Intuyo que es como un Friedman pero que admite algún efecto fijo.
Graccie mile.
--
Antonio Maurandi López
Universidad de Murcia
Edif. CAID. Campus de Espinardo.
30100 Murcia
@. amaurandi en um.es
T. 868 88 7315 F. 868 88 7302
www.um.es/sai
2013 Oct 21
2
Error de markdownToHTML al parsear LATEX
Hola.
Intento crear un archivo .html a partir de un .Rmd que tenga Toc, LaTeX y tablas.
Empleo RStudio (v. 0.97.551), pero aparece un error en la función "markdownToHTML"
Pasos:
1) creo un fichero Rmd (adjunto ejemplo) => con knitr (v. 1.0.5) crea un fichero ".md"
2) Si quiero añadirle el TOC (table of contents) necesito emplear la función "markdownToHTML" del
2009 Oct 08
5
sort (all columns of) a matrix
Dear R-Help Team,
I have been trying to sort (all columns of) a matrix:
> a<-matrix(a<-c(1,3,4,6,6,4,6,56,4,64,86,39,4,2),length(a),2)
> a
[,1] [,2]
[1,] 1 1
[2,] 3 3
[3,] 4 4
[4,] 6 6
[5,] 6 6
[6,] 4 4
[7,] 6 6
[8,] 56 56
[9,] 4 4
[10,] 64 64
[11,] 86 86
[12,] 39 39
[13,] 4 4
[14,] 2 2
>
I
2013 Oct 22
3
Error de markdownToHTML al parsear LATEX
Hola, primero de todo muchas gracias.
He probado a ejecutar el programa en una máquina virtual y efectivamente
funciona.
La única diferencia con mi ordenador está en locale, que me aparece esto:
> sessionInfor()
locale:
[1] LC_CTYPE=es_ES.UTF-8 LC_NUMERIC=C
[3] LC_TIME=es_ES.UTF-8 LC_COLLATE=es_ES.UTF-8
[5] LC_MONETARY=es_ES.UTF-8
2004 Mar 25
1
factor based on pattern match ?
Hello,
is't possible to specify pattern in levels ?
> y=c("ff","f","m","mm","fm","mf","ffm","mmf","mmm","fff");
> factor(y)
[1] ff f m mm fm mf ffm mmf mmm fff
Levels: f ff fff ffm fm m mf mm mmf mmm
I want to specify levels using regexp ("f.*","m.*") or use