Displaying 20 results from an estimated 2000 matches similar to: "Dovecot and fcntl errors"
2001 Nov 20
1
OH DEAR! - RE: 2.2.2 runaway SMBD process
Jeremy,
Bit of bad news - we had a another runaway SMBD. This time profiles were
NOT involved - I was simply copying up an installation of Office2000 and
then deleting it. It almost reached the end of the deletion when the
processor utilisation went up to 90%. The client connection then dropped
with a 'connection is no longer available' and there is now 99% processor
utilisation on the
2019 Feb 19
2
Cambiar el formato de datos
Después del "gather()" puedes hacer un "arrange()" que es una ordenación. Y
dentro de "arrange()" le indicas la variable por la que ordenas (no hacen
falta comillas)...
Lo ordenará alfabéticamente.
Saludos,
Carlos Ortega
www.qualityexcellence.es
El mar., 19 feb. 2019 a las 13:47, Antonio Rodriguez Andres (<
antoniorodriguezandres70 en gmail.com>) escribió:
2019 Mar 06
2
Crear una variable tipo factor a partir de un vector de caracteres
Si lo que quiero es crear una variable llamada por ejemplo region (del tipo
factor) con esos 5 valores
On Wed, 6 Mar 2019 at 15:41, Xavier-Andoni Tibau Alberdi <
xavitibau en gmail.com> wrote:
> No, No. Fíjate en el Ifelse(condición, valor si positivo, valor si
> negativo).
>
> Si, x %in% ca entonces el valor devuelto es "ca", un factor. En caso
> negativo, vamos
2002 Mar 21
4
ExitThread won't.
Okay, so with complete lack of any other ideas, I tried to
figure out what was wrong with my app (Proxomitron), which
is leaving unkillable processes around.
So I went into ExitThread, and added something like:
DPRINTF("%08lx:Exiting thread...(%d)\n", GetCurrentThreadId(),getpid());
exit(code);
right at the top of the function.
And, lo and behold, the processId matches the
2019 Sep 04
2
Plot. window error- Usando R base. Gráfico
No me sale error pero no me imprime la linea, ni ningun gráfico por pais.
On Wed, 4 Sep 2019 at 18:42, neo <ericconchamunoz en gmail.com> wrote:
> podría ser el problema el tipo de dato en X y el tipo de gráfico que
> intentas hacer ?
>
> si Year es entero y estas pidiendo que el gráfico sea tipo "I", podría
> ser que quizá eso te produce el error ?
>
> si
2019 Sep 04
2
Plot. window error- Usando R base. Gráfico
Lo que obtengo es dim(currcty) = NULL
lo que hice es crear una lista de paises
countrylist <- unique(length(eco_freedom2$Countries)
Los datos son de esta forma
head(eco_freedom2, 5)
Year ISO_Code Countries SUMMARY.INDEX X1..Size.of.Government
641 2000 AGO Angola NA NA
601 2001 AGO Angola NA NA
561 2002
2019 Mar 25
2
Uso de merge
Jose Luis
Column `Country` joining factors with different levels, coercing to
character vector
common_col_names <- intersect(names(sub_kei), names(knowledge))
> common_col_names
[1] "Country" "Year"
nrow(sub_kei) <- 132
nrow(knowledge) <- 3864
Tiene distinto numero de pais como de año, en el sub_kei aparecen 5 años y
en el otro dataset (knowledge) datos anuales
2019 Mar 25
2
Uso de merge
Hola usuarios de R
Estoy tratando de usar merge, para dos data frame, sin embargo al usarlo me
da resultado correcto, en términos de emparejamiento de pais y año, pero lo
que me hace es que el dataframe *y* me hace como un append por filas. Las
variables comunes son país y año. Alguna sugerencia?
combine = merge(sub_kei, knowledge, by = common_col_names, all.x = TRUE,
all.y = TRUE)
Saludos
--
2012 Oct 05
4
[PATCH] drm/nouveau: handle same-fb page flips
It's questionable use case, but weston/wayland already relies on this behaviour,
and other drivers don't care about it, so it's a matter of compatibility.
Without it, process invoking such page flip hangs in unkillable state, trying
to reserve the same buffer twice.
Signed-off-by: Marcin Slusarz <marcin.slusarz at gmail.com>
---
drivers/gpu/drm/nouveau/nouveau_display.c | 20
2008 Jun 24
10
Question on passing arguments inside a view.
I''m running into an issue undefined local variable or method
`directoryid'' for #<EditorialsController:0x23f1bf8>
I have two Models on a legacy database and only one controller called
editorials with two actions index and display.
I''m trying to pass in a parameter from the results of my search and
getting the above error.
Example:
two tables one is editorial the
2010 Apr 09
4
zfs send hangs
My zfs filesystem hangs when transferring large filesystems (>500GB)
with a couple dozen snapshots between servers using zfs send/receive
with netcat. The transfer hangs about halfway through and is
unkillable, freezing all IO to the filesystem, requiring a hard
reboot. I have attempted this three times and failed every time.
On the destination server I use:
nc -l -p 8023 | zfs receive -vd sas
2019 Sep 04
3
Plot. window error- Usando R base. Gráfico
Carlos
Al especificar los limites, no me sale ningun error, aunque no consigue
graficar, nada,
# Look at the time series for each country for the time period, for
instance GDPPC
for (i in 1:length(countrylist)){
currcty <- countrylist[i]
filename <- paste("index",currcty,".png",sep="")
png(filename,width=800,height=600)
2017 Jun 19
2
Problema con Histograma con porcentajes usando ggplot
Creo que esto me da para DK, y luego veré como aplicar el barplot
ess %>%
filter(cntry %in% c("DK")) %>%
count (stflife) %>%
mutate (freq = (n /sum(n)*100))%>%
print
2017-06-18 19:01 GMT-05:00 Antonio Rodriguez Andres <
antoniorodriguezandres70 en gmail.com>:
> He conseguido el total para un país, pero no me deja usar percent =
> count() /sum(count),
2008 Oct 06
4
Opening of the wiki Part III(?) ...
... which will hopefully be the last part.
Sorry that it took that long, but I didn't have too much time on my
hands over the last two months or so.
This is what should be the last stages of opening up the wiki:
a) I have changed the account creation page:
<http://wiki-m.centos.org/UserPreferences>. Please view that page
while logged out of wiki-m.
b) While doing so I have
2019 Feb 19
2
Cambiar el formato de datos
> gather(pobla, key = year, value = totpop, year60:year63)
Country year totpop
1 Afghanistan year60 8996351
2 Albania year60 1608800
3 Algeria year60 11124888
4 Andorra year60 13411
Gracias Carlos
Antonio
On Tue, 19 Feb 2019 at 12:54, Carlos Ortega <cof en qualityexcellence.es>
wrote:
> Sí, tienes varias formas.
>
> Mira la función
2019 Mar 06
3
Crear una variable tipo factor a partir de un vector de caracteres
Pero eso es para crear variables binarias tipo 0-1 si el pais pertence a un
determinado grupo. Lo que quiero es crear una variable de tipo factor con
esos 5 niveles, sabiendo que tengo en el dataframe una variable llamada
Country, con el nombre del pais.
Gracias
On Wed, 6 Mar 2019 at 15:27, Xavier-Andoni Tibau Alberdi <
xavitibau en gmail.com> wrote:
> Buenas,
>
> Para ello yo uso
2009 Nov 11
2
ls -l hang, process unkillable
hello,
one of my colleague has a problem with an application. the sysadmins, responsible for that server told him that it was the applications fault, but i think they are wrong, and so does he.
from time to time, the app gets unkillable and when trying to list the contents of some dir which is being read/written by the app, "ls" can list the contents, but "ls -l" gets stuck
2019 Sep 04
3
Plot. window error- Usando R base. Gráfico
Hola queridos usuarios de R
Estoy intentando hacer un gráfico de una variable en el tiempo para un
conjunto de países usando R base, con el comando plot. Tengo 40 países y
son 15 años. Lo quiero salvar como formato png, cada uno de ellos.
Tengo el siguiente código,
for (i in 1:length(countrylist)){
currcty <- countrylist[i]
filename <-
2017 Sep 01
4
Consejo
Estimados miembros de la comunidad de R
Me gustaria conocer dado que estoy trabajando con datos del World Values
Survey, y tengo que recodificar variables y manipularlas,
por donde podria empezar a estudiar el uso de R en grandes surveys. Que
podria comenzar a la leer.
Su respuesta sera bienvenida
saludos
Antonio
--
Member, Editorial Committee, *The Economic and Labour Relations Review* (a
2006 Mar 22
1
Process hanging on 6.0-STABLE
Hi,
I work for a small company that makes radar systems for research
organisations and we use FreeBSD on the PCs for data acquisition and
processing. We have recently shifted to FreeBSD6/amd64 and one machine in
particular is exhibiting a strange problem.
The acquisition process is a Tcl interpreter with a largish chunk of C code
which talks to the hardware (via RS485 and a custom PCI card).