Displaying 20 results from an estimated 300 matches similar to: "samba Digest, Vol 132, Issue 29"
2007 Jun 08
0
Escobar&Meeker example survreg
Dear all,
I am new to R and may make beginner mistakes. Sorry.
I am learning using R to do survival analysis. As a start I used the
example script code provided in the documentation of predict.survreg of
the survival package:
# Draw figure 1 from Escobar and Meeker
fit <- survreg(Surv(time,status) ~ age + age^2, data=stanford2,
dist='lognormal')
plot(stanford2$age, stanford2$time,
1998 Aug 19
0
FW: Samba and multiple IPs
Has anyone done this? Or any suggestions?
> Samba team,
> Before I send this to the samba list...
>
> I am currently trying to setup a 3rd samba server with a tried
> and true smb.conf file. The only difference is an upgrade from samba
> 1.9.18p7 to samba 1.9.18p8. The only "Non-standard" feature, is that
> we are using an NT server to authenticate users, and
2012 Feb 23
0
Transmit NOA (sss) to Dialogic IMG via SIP / Transmisión de NOA hacia Dialogic IMG por SIP
Spanish/Espa?ol:
Hola a Tod at s,
Estoy en la implementaci?n de una soluci?n a medida en la cual requerimos conectarnos v?a SIP a un IMG de DIalogic y salir hacia otras centrales (MSC) v?a SS7, la conexi?n entre Asterisk y el IMG es SIP, pero como requerimiento necesito enviar un NOA (Nature of Address) con valor 8 por requerimientos normativos, hasta ahora no he podido encontrar como puedo
2013 Jul 19
1
organizar datos
Hola a todos.... cordial saludo...
Como se podran dar cuenta en contados segundos, soy completamente novato en
R.. .asi que mis excusas por adelantado debido a lo simple del
requerimiento...
Tengo un archivo con datos, el cual adjunto.... la idea es ordenar los
mismos por columna, una junto a la otra, estacion por estacion... esto es,
los datos estan ordenados una estacion debajo de la otra,
2018 Oct 12
2
[Bug 108346] New: System lagging
https://bugs.freedesktop.org/show_bug.cgi?id=108346
Bug ID: 108346
Summary: System lagging
Product: xorg
Version: unspecified
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
Assignee: nouveau at lists.freedesktop.org
2011 Sep 04
1
Tripp-Lite Internet350Ser
Hello,
I'm newbie with NUT, I'm trying to get work a *Tripp-Lite Internet350Ser*, a
small UPS with serial port.
The only reference about, is a modification patch that Mr. Patrick Levesque
did for NUT 2.4.1 but the actual 2.6.1 looks to not have it yet.
I tried all tripp and generic drivers but no success.
Has anyone luck with this Tripp-Lite model?
Thanks!
Iv?n Escobar
2007 Jan 17
1
How to annotate a graph with non-transparent math labels?
I do not know the precise language to describe the situation. But here
it is what I want to do.
I need to annotate a graph that contains two or more curves with labels
that contain math symbols. The label must go on top of the curve.
The problem is that when I annotate the plot, I can see the curve
behind the label. Here it is an example using a simple straight line.
x<-c(0,1)
2013 Nov 16
3
como agrego una linea dibujada con abline() en la leyenda de un grafico ?
Estimados, tengo un grafico al que agregue una linea con abline(), este
es el codigo ...
library(Hmisc)
# agregar una linea horizontal con el valor del angulo de contacto del
control
trellis.device(color = FALSE)
xYplot(Cbind(ca.med[,3],ca.med[,5],ca.med[,6])~ca.med[,2], groups=Sol,
data=ca.med, xlab=list(label="Concentration (mM)", cex=1.3),
ylab=list(label="Contact Angle
2014 Jan 02
0
Ayuda con red neuronal y creación de curvas ROC
Hola,
Bienvenido a R...
Creo que puedes avanzar mucho más rápido con tus modelos y al tiempo
aprender cómo se hace todo lo quieres ver en R si utilizas el paquete
"rattle". Es un paquete con un GUI muy sencillo de usar y que permite
modelizar tus datos con múltiples algoritmos. Además de curvas ROC te
ofrecerá otros gráficos para comprobar la bondad del ajuste, además de que
podrás ver
2014 Aug 13
0
Re: how virt-manager gets CPU usage of Guest
On 13.08.2014 16:00, Restituto Marcus Arevalo wrote:
> Hi,
>
> Does anybody know how virt-manager is getting the CPU usage of the
> guests? I need to know how to get the CPU usage of the guests and this
> is the only way I can think of. In other words, how does virt-manager
> produce the graph of the CPU usage of EACH guest in KVM? I don't
> actually need the graph, I just
2023 Feb 21
0
Reforma IMSS e INFONAVIT
Actualizaci?n 2023: IMSS - INFONAVIT
ADMINISTRACI?N ESTRAT?GICA
DE LA NOMINA
Seminario Online - 24 de Marzo 2023
Aprenda a estructurar y actualizar la n?mina de su empresa con base a las Nuevas Reformas laborales 2023
Responda "TEMARIO-N?MINA" para recibir toda la informaci?n de este evento a nivel nacional
Datos de contacto:
- Nombre:
- Tel?fono:
- Correo Corporativo:
2019 May 12
2
Como reordenar datos para analisis multiples correspondencias (MCA)
Necesito luz para ordenar unos datos... en realidad, para ordenar muchos
muchoas veces. El problema hoy:
Tengo una base de datos que incluye respuestas dobles en algunas variables
en algunos individuos, tabla didáctica:
idioma alergia color
individuo1 en,es 0 amarillo
individuo2 es,en huevo limon
individuo3 es,fr,en pescado, huevo
2010 Jul 20
1
Servreg $loglik
Dear R-experts:
I am using survreg() to estimate the parameters of a Weibull density having
right-censored observations. Some observations are weighted. To do that I
regress the weighed observations against a column of ones.
When I enter the data as 37 weighted observations, the parameter estimates
are exactly the same as when I enter the data as the corresponding 70
unweighted observations.
2003 Sep 12
2
Converting character to function argument
How can one transform a character string into an argument of a function
(which is not or I don't want it to be a character string)?
Example:
> expand.grid(c(1,0),c(1,0)) ## OK
Var1 Var2
1 1 1
2 0 1
3 1 0
4 0 0
> paste(rep("c(0,1)",2),collapse=',') ## to be used below
[1] "c(0,1),c(0,1)"
> ## string is the input I want, but it
2008 May 02
1
[virt-manager]
hello list, I have a problem with virt-manager; strip me this error:
Unable to open a connection to the Xen hypervisor/daemon.
Verify that:
- A Xen host kernel was booted
- The Xen service has been started
verify what I said and everything ok. My question is: Hypervisor has
to run with a processor with a bit of virtualisation?
Thanks
--
Escobar, Nicolas
Dto. Tecnologia@ITC
2010 Jul 19
2
Help on R strucchange package
Hello,
Im using strucchange package in R software in order to apply Bai and
Peron (1998, 2003) structural break tests to a set of n=1671
observations with a constant term (no AR terms).
For that purpose I have read several papers, for instance Validating
Multiple Structural Change Models An Extended Case Study, in which
its aim is to replicate the results from Bai and Perron (2003) in R
2013 Nov 19
2
como agrego una linea dibujada con abline() en la leyenda de un grafico ?
Eric
Recordé un ejemplo rápido
## Setup up coordinate system (with x == y aspect ratio):
plot(c(-2,3), c(-1,5), type = "n", xlab = "x", ylab = "y", asp = 1)
## the x- and y-axis, and an integer grid
abline(h = 0, v = 0, col = "gray60")
text(1,0, "abline( h = 0 )", col = "gray60", adj = c(0, -.1))
abline(h = -1:5, v = -2:3, col =
2011 Aug 07
0
CPU Usage
Hi.
I have Xen (2.6.18-238.19.1.el5xen) running on Centos Release 5.6 (Final).
I have na issue regarding CPU Usage displayed on virt.manager.
Here de CPU usage is almost 100%, but if i check the Centos system monitor
it reports 2%.
Also on the cliente machine a 3% CPU Usage is shown on window resourse
monitor.
So, here comes that information? Is this realy a proble or just a
2013 Nov 19
0
como agrego una linea dibujada con abline() en la leyenda de un grafico ?
solo quiero reponer esta pregunta ya que necesito hacer esto en varios
graficos
slds, eric.
On 11/16/2013 07:39 PM, neo wrote:
> Estimados, tengo un grafico al que agregue una linea con abline(), este
> es el codigo ...
>
> library(Hmisc)
>
> # agregar una linea horizontal con el valor del angulo de contacto del
> control
> trellis.device(color = FALSE)
>
2019 Jul 18
0
DIal-in TAB not working
Hi all.
I know this has been talked about some two years ago, but I'm still facing this issue.
Whenever I try to access the Dial-in TAB in the User Properties to enable the msNPAllowdialin I get "Dial-in page initialization failed"
I'm using a Win 2k8 R2 to manage the domain running samba 4.10.5.
The MS server isn't a controller.
I can change the attribute directly via