Displaying 20 results from an estimated 900 matches similar to: "booting initramfs"
2004 Jan 26
5
conditional assignment
Hi all
I want to conditionally operate on certain elements of a matrix, let me
explain it with a simple vector example
> z<- c(1, 2, 3)
> zz <- c(0,0,0)
> null <- (z > 2) & ( zz <- z)
> zz
[1] 1 2 3
why zz is not (0, 0, 3) ?????
the null <- assignment is to keep the console silent
in the other hand, it curious that null has reasonable values
> null
[1]
2003 Oct 27
3
assign a constant to a different column for each row
Hi all
I want to assign a constant to a different column for each row
eg:
m[1,2] <- 0;
m[2,3] <- 0;
m[3,1] <- 0;
m[4,2] <- 0;
m[5,1] <- 0;
...
etc...
i've tried apply/tapply with no luck
and also the following
coefs <- rtt.abs[,5:8];
coefs.i <- coefs[] == 1;
coefs[coefs.i] <- 0;
wich results in
"matrix subscripts not allowed in replacement"
2004 Jan 14
3
summary() within a function
I have the following function
f <- function {
...
model <- lm(rttx[,1] ~ rttx[,2] + 0);
summary(model);
...
}
while summary(model) shows the summary if I execute the function line by line
in the Command Line Interface, if I call f() summary is silent
how to solve it? or is there workaround?
thanks in advance
Ulisses
Debian GNU/Linux: a dream come true
2001 Apr 05
3
increasing the size of the journal data file
Hi all
I'm running succesfully 2.2.19pre13ext3
as mentioned in the subject line, I would like to increase the journal file
I have the jfs/* and ext3/* files and I believe that:
+ asigning a new journal (-o journal=[new inode or increased inode]) data can solve it
+ increasing the actual file _appending zeroes_ to it can be used to increase
it online, however the new space will not be
2004 Feb 20
9
R: Including R plots in a Microsoft Word document
Greetings List,
I am conducting some large simulations using R. As a result, I get many plots but I'm having some trouble with including some of them in a Microsoft Word document. Can any one tell me the easiest method of having copies of the R-graphs in the Word documents?
Best regards
Mahmoud
[[alternative HTML version deleted]]
2011 Jul 13
7
Extraer datos mensuales de una serie temporal
Hola a todos
Estoy intentando extraer un subconjunto de datos de una serie temporal,
concretamente quiero extraer los meses de verano de varios años pero no
encuentro la manera. Los datos tienen este formato:
FECHA;H_SOLAR;DIR_M;DIR_S;VEL_M;VEL_S;VEL_X;U;V;TEMP_M;HR;BAT;PRECIP;RAD;UVA;UVB;FOG;GRID;
2011 Jun 03
1
R and DBSCAN
Hello everyone,
When looking for information about clustering of spatial data in R I was
directed towards DBSCAN. I've read some docs about it and theb new
questions have arisen.
DBSCAN requires some parameters, one of them is "distance". As my data
are three dimensional, longitude, latitude and temperature, which
"distance" should I use? which dimension is related to
2013 Jul 10
3
ayuda con manipulación de datos
hola,
casi recien llegado a r, esta es mi primera participación en la lista,
aunque me han servido bastante entradas anteriores. gracias a todos.
tengo un problema al generar una determinada estructura de datos. A ver si
alguien me puede ayudar.
tengo un dataframe con información de visitas y productos de una web. En
cada visita se pueden hacer varias transacciones comprando varios productos
en
2006 Feb 02
5
Could not load 'SOUND.DLL' required by 'sierrawh', error=2
Hello list,
I'm trying to get some old windows Win95/98 games to run without too
much luck. This example is a Sierra Hoyle Classic Games CD from 1998,
which should be enough to keep my wife happy without having to reboot my
computer back into windows...if I can get it to work. The installer
itself runs fine, and even plays a sample sound clip to test the sound
before installing. After
2014 Jun 11
4
Bootstrap
Hola! Tengo que hacer un proyecto acerca del paquete bootstrap de R, alguien podría facilitarme información completa (y en español a ser posible) acerca de este paquete?
Muchas gracias de antemano, y un saludo.
[[alternative HTML version deleted]]
2013 Mar 06
6
Latest Xen on ARM Fast Models
Hi,
I''m having some problems with getting the latest linux kernel and xen build
working on ARM''s Fast Model simulator ( Cortex A15 ). I tried a lot of
different configurations and I''m having trouble with all of them. I got all
my information from the wiki pages at
http://wiki.xen.org/wiki/Xen_ARMv7_with_Virtualization_Extensions#Building_Xen_on_ARM
.
I was hoping
2006 Nov 01
6
Java Web Phone
Hello list partners
you know about a softphone made in java attachable in a web page?
GNU!
Thaks in advance!______________________________
Visita http://www.tutopia.com y comienza a navegar m?s r?pido en Internet. Tutopia es Internet para todos.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2013 Jul 11
1
ayuda con manipulación de datos
Hola,
Miraría detalles en el paquete "arules" que está pensado justamente para
este tipo de análisis (Basket y Transaction analysis).
http://cran.r-project.org/web/packages/arules/vignettes/arules.pdf
Saludos,
Carlos Ortega
www.qualityexcellences.es
El 10 de julio de 2013 14:59, Carlos J. Gil Bellosta
<cgb@datanalytics.com>escribió:
> Hola, ¿qué tal?
>
> Yo veo dos
2017 Feb 13
1
Installing Libspeex in VLC
Good day everyone,
I'm trying to run .speex audio files in VLC. So I found a link to libspeex
in VLC website, and I downloaded the package. Anyway, I don't know how to
install it from now, once it's in a tar.gz format.
Do I have to extract the files and paste it in VLC folder?
P.S.: I'm using Win7.
Thx a lot.
Best regards,
Ulisses
-------------- next part --------------
An
2011 Apr 05
2
Help to check data before putting it in a database
The example scene:
I have a database with stats about each goal made by my soccer team. This
database (a data frame in R) is organized in lines (goals) with a set of
columns containing data about these goals (player name, tactic position,
etc). For now, this database will be called "data.frame1".
What I need is to feed this "data.frame1" with new information about my team
2011 Mar 04
3
Análisis de una serie temporal diaria
Hola a todos
Estoy tratando de analizaruna serie temporal con datos diarios de
temperaturas (40 años). He creado un objeto zoo (con ayuda de la lista,
gracias) sobre el que encuentro la regresión lineal. He probado también
a crear un objeto ts a partir del zoo. El problema que encuentro es que
nose puede aplicar la función stl para hallar la componente estacional y
la tendencia. Rdice que la
2012 Mar 08
3
[PATCH 0/3] kinit: Allow mount options
This patch series allows user-specified mount commands to be
sent in via kernel command line ("kinit_mount=...") or via
an embedded /etc/fstab file.
The first patch is a cleanup of a patch sent last November
by San Mehat (http://web.archiveorange.com/archive/v/EazJNBMORV2U7E0coh5h);
the next two are small improvements or bug fixes.
2013 Jan 23
3
nut driver for SMS (brazil) UPS
Hi,
I'm new to this list but I have some contribution to do (or new problem!)
At this mailing list archive, october, last year, I could see that there is a demand for a nut-driver for some brazilian SMS UPS. (Monophase: Net+ and Senoidal models).
The first version is running under some limitations, but it is going on.
If anyone has interest for improvements, suggestions, then I can
2012 Jun 27
4
Intervalos de variable de proporciones, para representar en mapa
Hola.
Tengo que representar en un mapa, valores de proporciones de extranjeros
con tarjetas de residencia en vigor, según nacionalidad y país de
procedencia.
Los datos son de este estilo
Rumania
Andalucía 0,200365823
Aragón 0,377192073
Asturias 0,205353012
I. Baleares 0,06592893
Canarias 0,03050312
Cantabria 0,190397393
Castilla-León 0,211670421
Castilla-La Mancha
2013 May 22
3
definir tipo de variable
Buenos días
¿Podríais explicarme cómo defino en R el tipo de variable y las etiquetas de la misma y las etiquetas de valor?.
En SPSS utilizo la siguiente sintaxis:
VARIABLE LEVEL DB030(NOMINAL).
VARIABLE LEVEL DB040(NOMINAL).
VARIABLE LEVEL DB090(SCALE).
VARIABLE LABELS DB010 'AÑO'.
VARIABLE LABELS DB020 'PAÍS'.
VARIABLE LABELS DB030 'ID_HOGAR'.
VARIABLE