Displaying 20 results from an estimated 10000 matches similar to: "How to stop a loop for?"
2011 Jun 25
3
How to export to pdf in landscape orientation?
Does anybody know how to get a pdf file with landscape orientation?.
pdf(file= 'my_file.pdf' ,onefile=T,paper='A4')
plot(sin, -pi, 2*pi)
dev.off()
Thank's in advance
Juan A. Hernandez
Spain
[[alternative HTML version deleted]]
2011 Jan 24
1
How to carry out a hierarchical cluster analysis
I would appreciate any information about how to carry out a hierarchical
cluster analysis with cluster of subjects. I need to find cluster of
subjects that share many variables. I know that fcp package have a lot of
options to carry out the regular hierarchical cluster analysis (cluster of
variables).
Thank´s in advance
Juan Hernández
Facultad de Psicología
La Laguna University
Canary Islands
2011 Jan 27
1
How to xyplot without borders
Hello I have the following data.frame and xyplot. I need this plot without
the borders. Does anybody know how to get this xyplot without borders o with
white borders?
Thank's in advance
Juan Hernández
my.label <- data.frame(quantil=rep(20,8),
my.factor=factor(c('FA','FB','FC','FD','FE','FG','FH','FI')))
library(lattice)
2007 Dec 05
5
New feature: calling all bug marshals
Hi.
I wanted to write a "popcorn" app for myself, both to learn how to
script in extensions.conf, but also because it was something handy.
Along the way, I found myself doing something like:
[popcorn]
exten => s,1,Set(FUTURETIME=$[${EPOCH} + 10])
...
exten => s,n,While(${EPOCH} < ${FUTURETIME})
exten => s,n,Wait(0.01)
exten => s,n,EndWhile()
exten => s,n,Play(beep)
2011 Oct 17
1
lmtp performance
Hello:
In the process of migration from version 1.2 to 2.0 have tried to use
lmtp instead of lda as delivery agent.
But unfortunately througput we get is poor with lmtp compared to lda.
In peak times with lda we are able to deliver over 1800 messages/minute
(high I/O but not affecting service) but if we switch to lmtp cannot
deliver more than 300 mess/minute (very low I/O).
This is enough
2011 Mar 19
1
how to access the elements of a univariate results table with Anova (library car)
Dear R users, I use the excelent Anova function of the library car because
the easy way to get sphericity correction. Unless I use the scan function. I
have not been able to access the values of sum squares and degrees of
freedom for each effect in the univariate summary table.
Example of the car library for Anova function:
library(car)
phase <- factor(rep(c("pretest",
2005 Apr 25
1
HElpme
Hello.
This is my first post.
In our company have a program that had being compiled in clipper for
dos. Actually, i put a samba server version 3.0.10 to share a
application and database, but i have this problem, in a machine with
windows, the application is more fast that in my server. Even if the
windows machine share these folder.
the proces in the samba server is more slow about 300% vs
2014 Feb 27
3
maildir quota divergence
Hello;
We are using maildir quotas and have found differences in many users in
respect to what system command are showing and doveadm quotas.
For example, four user test, we have:
doveadm quota get -u test
Quota name Type Value
Limit %
STORAGE 98066
102400 95
2006 Jan 04
3
date conversion
I have the date saved in a database in the following format
''20060102170020''. How do I go about converting the date in the format of
January, 01, 1901? I searched all over and found something similiar
using ''to_formatted_s''. However I only found support for converting
month to a three letter format (e.g. ''Jan''). Is there an eaiser way?
2012 Jul 13
3
Instalar R manualmente en Ubuntu
Hola Amigos:
Gracias por todas las respuestas sobre como filtrar datos en un data frame.
Ahora tengo un nuevo problema, necesito instalar R 2.15 manualmente,
pero no puedo hacerlo desde un repositorio.
Alguna solución??????????'
Un Saludos,
Leonardo
------------ próxima parte ------------
An embedded and charset-unspecified text was scrubbed...
Name: no disponible
URL:
2007 Nov 16
1
generate multivariate F with specified correlation matrix
Dear all,
In MATLAB, to generate multivariate F with specified correlation matrix Pn I can use the code such as
Z = mvnrnd([0 0 0 0 0], Pn, N);
U = normcdf(Z,0,1);
X = [finv(U(:,1),5,15) finv(U(:,2),5,15) finv(U(:,3),5,15) finv(U(:,4),5,15) finv(U(:,5),5,15)];
Is there something similar in R?
Thank you for your time.
2007 Dec 05
2
New feature: calling all bug marshals
> Hi.
>
> I wanted to write a "popcorn" app for myself, both to learn how to
> script in extensions.conf, but also because it was something handy.
>
> Along the way, I found myself doing something like:
>
> [popcorn]
> exten => s,1,Set(FUTURETIME=$[${EPOCH} + 10])
> ...
> exten => s,n,While(${EPOCH} < ${FUTURETIME})
> exten =>
2023 Mar 09
1
reemplazar valores en texto según condiciones
Hola,
Algo que me está pasando con esta función es lo siguiente:
A "p1" lo tengo que reemplazar por "p1_integra_datos" y a "p10" por
"p10_cuales_rep", pero como p10 contiene p1, y así pasa con otras preguntas
(p2 y p20, por ejemplo),
me los reemplaza en ambas, cuándo lo que busco es otra cosa.
reglas$condicion_final <-
2019 Feb 17
2
CASifying dovecot and webmail
Hello:
I'm trying to authenticate webmail (roundcube) and dovecot with Apereo CAS.
I don't find any good guide and everything I have found is some years
old. Has any of you done a recent integration with CAS and can share the
details ?
Best regards
--
------------------------------------------------------
Juan Carlos Sanchez Hernandez
Servicio de Infraestructura e Innovaci?n
2023 Mar 09
1
reemplazar valores en texto según condiciones
Buenas,
Se me hace raro que la función no admita un parámetro para eso.
Una opción es hacerlo en dos pasos:
P1: Reemplaza p10, p20, ... por algo como q10, q20, ...
P2: Haz el reemplazo que quieres.
Igualmente puedes hacer el reemplazo que haces y en un segundo paso reemplazar p10_integra_datos por p10_cuales_rep, ...
Un saludo, Manuel.
El jue, 09-03-2023 a las 10:20 -0300, juan manuel dias
2023 Mar 07
1
reemplazar valores en texto según condiciones
Hola,
La función case_when() te puede servir
https://dplyr.tidyverse.org/reference/case_when.html
El mar, 7 mar 2023 a las 12:04, juan manuel dias (<juamadias en gmail.com>)
escribió:
> Hola, como andan! Espero que bien!
> Tengo dos bases, A) tiene una variable texto en la que deseo reemplazar
> ciertas partes y B) tengo las condiciones para cambiar ese texto de la base
>
2019 Feb 19
5
Joining an Active Directory Domain "2016"
Hello,
Has anybody been able to join an Active Directory 2016 using Samba Winbind?
If so, how can this be done?
I've been trying but it fails every time and when it finally shows me
something using realm list, it won't let me login with any user from the
domain, therefore, not working.
Thanks,
--
Jorge F. Hernandez
IT System Administrator
*GLOSS*
28 West 25th Street, 12th Floor
New
2008 Oct 10
2
Asterisk SIP calls stop working having more than 300 calls (more than 600 channels)
After getting some ERRORS like this:
[Oct 8 21:42:49] ERROR[31903] rtp.c: No RTP ports remaining. Can't setup
media stream for this call.
[Oct 8 21:42:49] ERROR[2485] rtp.c: No RTP ports remaining. Can't setup
media stream for this call.
[Oct 8 21:42:49] ERROR[31903] rtp.c: No RTP ports remaining. Can't setup
media stream for this call.
[Oct 8 21:42:49] ERROR[2489] rtp.c: No RTP ports
2009 Feb 04
1
Out of Office: Out of Office: Out of Office: Ou t of Office: Ou t of Office: Ou t of Office: Ou t of Office: Ou t of Office: Ou t of Office: Ou t of Office: Re : som e kind of t i meou t problem in pbx _sp ool.c
Me encuentro de vacaciones hasta el proximo 16/02.
Por favor contactar a Pablo Minsteras (pablo.minsteras at utopixnetworks.com) o Gustavo Hernandez (gustavo.hernandez at utopixnetworks.com).
Muchas Gracias,
Gustavo Scheveloff
2023 Mar 07
1
reemplazar valores en texto según condiciones
Hola, como andan! Espero que bien!
Tengo dos bases, A) tiene una variable texto en la que deseo reemplazar
ciertas partes y B) tengo las condiciones para cambiar ese texto de la base
A.
Base A
texto
si p1 = 1 o 2 = 1,3
si p1 = 3 o 4 = 1
si p1 = 5 = 0,7
si p1 = 5 = 0,7
si p1 = 6 = 0
si p1 = 7 = "no aplica"
si p2 = 1 & p3 = 1 = 0,5
si p2 = 1 & p3 = 2 = 0,7
si p2 = 1 & p3 = 4