similar to: consulta

Displaying 20 results from an estimated 300 matches similar to: "consulta"

2013 May 31
1
consulta
Hola Agustin Creo que esto te podría valer Tiempos<-rnorm(100) Caudales<-rnorm(100) qmed<-0 #Tiempos<-c(1,3,5) #Caudales<-c(-1,1,-1) zeros<-function(tiempo,valor,qmed){ orden<-order(tiempo) tiempo<-tiempo[orden] valor<-valor[orden] zeros<-c() for(i in 1:(length(tiempo)-1)){ if((valor[i]-qmed)*(valor[i+1]-qmed)<0){
2003 Apr 14
2
categorical variables
Dear helpers I constructed a data frame with this structure > str(dados1) `data.frame': 485 obs. of 16 variables: $ Emissor : int 1 1 1 1 1 1 1 1 1 1 ... $ Marisca.Rio : int 1 1 1 1 1 1 1 1 1 1 ... $ Per?odo : int 1 1 1 1 1 1 1 1 1 1 ... $ Reproducao : int 3 3 3 3 3 3 3 3 3 3 ... $ Estacao : int 2 2 2 2 2 2 2 2 2 2 ... $ X30cm : int
2009 Oct 26
1
issue with levels of a factor after subsetting
Hi Second question in a day, i'm beginnning to feel incompetent... This time i'm having a weird problem, i'm importing the next data base: >car<-read.csv2("Historicos.csv") 'data.frame': 1818 obs. of 6 variables: $ Dpto : Factor w/ 11 levels "ANTIOQUIA","ATL?NTICO",..: 2 2 2 2 2 1 1 1 1 5 ... $ Rio : Factor w/ 43 levels
2015 Mar 21
3
Combinatoria
Hola buenos días, me presento, me llamo Miguel y 'soy de' y 'vivo en' Galicia. Soy profesor de secundaria (Bachillerato Adultos) y llevo 15 días estudiando R a un buen ritmo, pero todavía me faltan miles de cosas. He visto que R facilita, no solo el análisis de datos y que posee una potencia en cálculos estadísticos a cualquier nivel, sino gran caudal de recursos para Data Mining,
2008 May 29
1
In fact this is a Stats question, but... "The return."
*Thanks* all those who took the time to help me (even if the "question" was not related to - the use of - R). Now I think I can soundly make my point w/ the referee (can I use your replies? If so I intend to properly cite its use?!?). Regards, Eduardo Esteves ps - Sorry for not explaining the "biological details" of my posting: RNA/DNA is the ratio of RNA content to
2009 Oct 26
1
xyplot lines goes forth and backwards
Hi, This is my first post in this page althougt i've been using R for several months (by the way english is not my native language so sorry about the grammar). I have a problem with a xyplot on lattice, it's supossed to print different lines for each river (Rio) conditioned by a chemical parameter (Var) and the state at which it's located (Dpto) against the year the sample were taken
2008 May 04
8
Web tool for management xen DomainUs ?
Hi! I like to allow to several DomainUs admins to admin his virtual servers with a web interface, without contact with Domain0. This tool must be opensource, and allow shutdown, reboot and see the logs with a web user / pw. Perhaps too the memory, CPU, ,,, of the virtual server. Are there any tool some this? Any pointer will be welcomed. Regards, Agustin
2017 Apr 10
2
133 kbps stereo killer sample
Hello! I found a sample I can ABX successfully when encoded at 133.333 kbps. I was targetting 1 MB/min. https://drive.google.com/drive/folders/0B8KWShoIrA1kQzR1Z0FFRUlfcEU floex.wav is 4:54–5:04 of a lossless copy of 'Forget-me-not' by Floex, downloaded from http://store.floex.cz/album/zorya floex-133.opus was created with `opusenc --bitrate 133.333333 floex.wav floex-133.opus`,
2015 Mar 21
4
Combinatoria
En relación con lo que comenta Carlos, por ejemplo para el caso de las Variaciones sin Repetición, puede ser instructivoenseñar como se construye como por ejemplo: VsinR <- function(m, n){ return (factorial(m)/factorial(m-n))} VsinR(9,3) ------------------------- Creo que con la función factorial que viene por defecto en R puedes construir siguiendo este modelo rápidadmentecasi cualquier
2014 Jul 10
14
[Bug 81136] New: [NV92] Regression in Linux 3.15: GPU lockup after suspend
https://bugs.freedesktop.org/show_bug.cgi?id=81136 Priority: medium Bug ID: 81136 Assignee: nouveau at lists.freedesktop.org Summary: [NV92] Regression in Linux 3.15: GPU lockup after suspend QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All)
2017 Apr 18
1
Antw: Re: 133 kbps stereo killer sample
>>> Agustín Dall'Alba <agustin at dallalba.com.ar> schrieb am 14.04.2017 um 22:53 in Nachricht <CAHBqS-w3v44WM5x+_4XdFMkD42A2iYTbEWKEBmvJc2P3Y-LJGA at mail.gmail.com>: > I halved the volume of the sample before encoding with > `sox -v 0.5 floex.wav quiet.wav` and now I can't ABX it succesfully anymore. > So the artifact I heard was just clipping when encoding
2015 Mar 22
2
Combinatoria
Hola Miguel, Sí se pueden obtener las variaciones con y sin repetición en R. Eso sí están un poco escondidas... Se pueden calcular de esta forma: #---------------------- > #Cargar el paquete gtools > library(gtools) > #Definir el conjunto sobre el que se hará el cálculo > x <- c('rojo', 'azul', 'verde') > #Utilizar la función "permutations()"
2013 Jun 14
1
Cambio de formato
Estimado expertos: Acudo a vosotros porque no logro lo que quiero hacer. Tengo los datos de una sola serie temporal en formato rectangular, y quisiera transformar estos datos en una columna y escribirlos en un fichero, para su utilización posterior. He utilizado varias posibilidades, pero siempre en el nuevo fichero aparecen los datos precedidos de su índice posicional. ¿Cómo escribir los
2015 Mar 22
2
Combinatoria
Sí, también... Para las permutaciones, n=r. Y con el parámetro "repeats.allowed" controlas si son con o sin repetción: #---------------------- > #Permutaciones *con repetición* > permutations(n=3, r=3, v=x, repeats.allowed=TRUE) [,1] [,2] [,3] [1,] "azul" "azul" "azul" [2,] "azul" "azul" "rojo" [3,]
2015 Mar 22
3
Combinatoria
Hola amigos, muchas gracias por vuestra ayuda. Entonces veo que mi sorpresa era legítima. Por todos vuestros mails la conclusión es que: - En el módulo base de R no incluye combinatoria elemental, ni siquiera el número combinatorio Cm,n hay que cargar el paquete *combinat* - Y para las variaciones con repetición el paquete* gtools* - Y aún así no tenemos ni las combinaciones ni las
2010 Apr 15
16
Votaciones concurso logotipo
Hola a todos, Como os comenté hoy se terminaba el plazo para presentar una propuesta para el logotipo del grupo de usuarios de R. Ha habido personas que han presentado varias variantes de un mismo logotipo, por lo que lo hemos organizado por series, donde cada letra representa una variante del mismo logotipo. Para votar tenéis que escoger las tres series que más os gustan. Es importante que
2003 Oct 17
3
Streaming audio to the waveout device
Hi, Please excuse my ignorance but I'm having trouble with a very basic matter: I'm using vorbisfile to stream audio to the waveout device in Win32 (using waveOutWrite). I'm basically reading packets from an ogg file and streaming them using a simple buffering scheme. The thing is, this works great when the bitrate is more or less constant but the audio sounds garbled if there is a
2012 Oct 10
2
mapa municipios Andalucía con R
Hola a todos. Estoy utilizando R , más concretamente los paquetes maptools y sp, para realizar mapas de España por comunidades y provincias y de Andalucía por provincias y municipios. El caso es que para el mapa de municipios en Andalucía, una vez leído el fichero shp con readShapePoly , si luego por ejemplo , quiero poner todos los polígonos de un color utilizando library(maps)
2015 Mar 22
2
Combinatoria
Ya me extrañaba a mi! Mañana a primera hora miro todo lo que me comentas. Ahora estoy con ecuaciones no lineales y ya veo que hay que cargar librerias Muchas gracias. Un saludo El 23 de marzo de 2015, 0:08, Carlos Ortega <cof en qualityexcellence.es> escribió: > Hola, > > Por precisar un par de detalles: > > > - Con el paquete gtools se pueden generar: > - las
2017 Apr 27
2
RStudio en Ubuntu 17.10
Estimados Colegas: Como antecedentes les informo: a).-Traté de actualizar mi sistema de Ubuntu 16.10 a 17.04; sin embargo una falla de electricidad me cortó la instalación. b).- Me vi en la necesidad de reinstalar, pero formateando lo que tenía instalado, entre otros RStudio. Ahora que he estado tratar de recuperar la versión 1.0.143-i386, de RStudio, que tenía me encuentro que se debe instalar