Displaying 20 results from an estimated 110 matches similar to: "Net ads command output error"
2016 Feb 19
2
estimada comunidad, escribi a r-help haciendo una pregunta y recibi este mail ... de que se trata esto ? algun problema de seguridad ? saludos, eric.
-------- Forwarded Message --------
Subject: RE: [R-es] problema en el manejo con fechas
Date: Thu, 18 Feb 2016 05:28:09 -0500 (EST)
From: lena_conroy en consultingtours.xyz
Reply-To: lena_conroy en consultingtours.xyz
To: ericconchamunoz en gmail.com
Hi eric,
Thank you for your interest in the property listed for rent. You were
the first to email from the ad. We just finished all new
2010 Jun 05
1
wins or windbind problem? - help please
I have four domains in my LAN. I set up trust relationships for the
domains, having each PDC working as wins server for each domain but I hd
not set up winbind. I have samba3-3.3.12 + ldap (openldap 2.4.21) as users
backend.
I mean, I have wins support = yes for each PDC, and I can access to the
shared folders of each PDC from any windows computer from my LAN.
The problem is accessing to
2002 Nov 06
0
causality test
Dear list
exist a function or package in R for Granger or Johanson causality
test
thanks in advance
Rafael Gutierrez
Estad?stico
Unidad de Tecnolog?a Cerro Matoso S.A.
Ext. 3350
"Este correo y sus anexos pueden ser confidenciales y estar protegidos
por derechos de autor. Est?n dirigidos ?nica y exclusivamente para uso
de el (los) destinatario(s). Si Usted por error lo ha recibido por
2006 Nov 21
1
User administrator problem
Hi all,
I've a problem using a user with administrator privileges for mounting
or adding a machine to PDC. I created a common user called fernando
#id fernando
uid=1000(fernando) gid=544(Administrators)
grupos=544(Administrators),512(Domain Admins)
Mounting a resource with smbmount works fine, this the result from log.smbd
check_ntlm_password: authentication for user [fernando] ->
2023 Dec 04
0
correo de ayer
Seguramente ayer por la noche recibi? el correo de invitaci?n, estamos buscando empresas que utilicen agua en sus procesos, pero sobre todo que realicen descargas de Aguas Residuales. No s? si sabe, pero desde el 11 de marzo del a?o pasado se actualiz? NOM-001-SEMARNAT-2021 que sustituye a la NOM-001-SEMARNAT-1996 y ser? obligatoria para todos.
Nosotros estamos asesorando empresas y negocios para
2016 Aug 29
2
encontrar fechas saltadas
Hola Javier.
Quizás no me expliqué bien:
Estoy usando esta función para identificar fechas saltadas de una base de datos en formato d/m/A;
> mi_serie <- c
> ref_serie <- seq(from = min(mi_serie), to = max(mi_serie) )
>
> dif_series <- setdiff( ref_serie, mi_serie)
>
> dif_series
> length( dif_series)
El problema es que en REF_SERIE, me dice que los cálculos los
2016 Aug 29
4
encontrar fechas saltadas
?Hola,
"setdiff()" efectivamente funciona sobre vectores numéricos (no fechas).
Para fechas, es mejor hacerlo de esta forma (utilizando tus datos):
>
> Lines <- "fecha hora datos
+ 20/11/12 2:00:04AM 12.905
+ 21/11/12 3:00:04AM 12.889
+ 22/11/12 4:00:03AM 12.873
+ 23/11/12 5:00:03AM 12.861
+ 29/11/12 11:00:03AM 12.804
+ "
>
> datIn <-
2002 Oct 17
2
Help
Hello,
I already download rm160.sit to a iMac9.1 computer.
But I can not run R-icon for installation of R. The
computer told me --the application "R" could not be
opend because
"Carbonlib" could not be found. I donot know why I
could not install R to the computer.
Thank you.
Jinbo
__________________________________________________
Faith Hill - Exclusive Performances,
2016 Aug 30
2
encontrar fechas saltadas
Hola,
Vuelve a instalar el paquete "lubridate" y nos dices si sigues con el
problema.
Saludos,
Carlos Ortega
www.qualityexcellence.es
El 30 de agosto de 2016, 14:53, Javier Valdes Cantallopts (DGA) <
javier.valdes en mop.gov.cl> escribió:
> Hola Carlos y a todos los miembros.
>
> Al llamar a ?lubridate? me encontré con el siguiente problema:
>
> 1] date hour T
2009 Aug 05
2
reading and frequency analysis of Spanish text
For an historical paper I'm working on, I have some Spanish plaintext,
presently in the form of a Word .doc
file,
http://euclid.psych.yorku.ca/SCS/Gallery/images/Private/Langren/Verdadera-spanish-stripped.doc
and also some ciphered text from the same original source. The ultimate
goal is to use some
frequency analysis of letters and word lengths in the plaintext to help
decode the
2016 Aug 30
2
encontrar fechas saltadas
Hola,
Usé "textConnection" para poder utilizar tus propios datos y leerlos con
read.table.
En tu caso, si tienes los datos en un .csv, simplemente tienes que leerlos
con read.table y utilizar la parte que sigue a "library(lubridate)" en el
código que compartí ayer: coger la columna de fechas, leerla con
"lubridate" y compararla con el vector de referencia.
El error
2016 Aug 29
4
encontrar fechas saltadas
Hola a todos:
Apliqué el método, pero me salió lo siguiente;
error in FUN(X[[i]], ...) : only defined on a data frame with all numeric variables.
Me imagino que el error surgió ya que la tabla de valores que necesito encontrar tengo "FECHAS", "HORA" Y NUMERO . Por ejemplo;
fecha
hora
datos
20/11/12
2:00:04 AM
12.905
21/11/12
3:00:04 AM
12.889
22/11/12
4:00:03 AM
2016 Aug 30
2
encontrar fechas saltadas
?El considerar las horas, minutos y segundos, depende de lo que quieras
hacer.
- Puedes incorporarlo en el campo fecha con la función de lubridate:
"ymd_hms()".
- Pero luego al crear el vector de referencia para encontrar los
faltantes tienes que crear un vector secuencia entre la fecha mínima y la
máxima. Este vector de referencia no tiene dudas de que es entre el max y
2004 Jul 27
2
computing differences between consecutive vector elements
Dear R-users,
I am a newbie to R so please excuse this naive question for which I couldn't
seem to find online answers.
I have this data frame containing a series of locations through time
(x,y,z,t). I would like to compute the difference in x, y and z between t-1
and t.
Sounds easy enough, but how on earth does one loop through vector elements
and compute this difference?
Thanks
Thomas
2010 Feb 10
0
Installing the glmnet package.
Hello,
R version 2.8.0 (2008-10-20) on a linux-64-bit machine.
I am trying to install the "glmnet" package and I get the following error:
*******************************************************************************
> install.packages(pkgs = "glmnet")
trying URL
'http://cran.parentinginformed.com/src/contrib/glmnet_1.1-5.tar.gz'
Content type
2010 Feb 05
2
Importing data coming from Splus into R.
Hello there,
I spent all day yesterday trying to get a small data set from Splus into R,
no luck! Both, Splus and R, are run on a 64-bit RedHat Linux machine, the
versions of the softwares are 64-bit and are as what follows:
Splus:
TIBCO Software Inc. Confidential Information
Copyright (c) 1988-2008 TIBCO Software Inc. ALL RIGHTS RESERVED.
TIBCO Spotfire S+ Version 8.1.1 for Linux 2.6.9-34.EL,
2007 May 01
1
PAM, Active Directory, all users mapped to uid=0
I'm having a problem with authentication using PAM, connected on the
back end to Active Directory. PAM authentication itself works fine. We
can log in to the machine using AD credentials without any problems.
Each user is automatically mapped to uid's in the 10000+ range.
However, for some reason when the user logs in via dovecot, the user's
uid and gid are showing up as 0. For
2016 Mar 08
2
ALLOCATE in a FORTRAN subroutine
> You can call (some) R functionality from C
When I read about 'R api' I thought that we could call all the functionality of R. I think that in the windows world, this is called OLE automation. From a pure programmer point of view, it is very convenient and my customer is creating a team of programmers. But, if only 'some' functionalities can be called, it's not so useful.
2004 Jul 28
5
using Rterm under cygwin, no possiblity to delete characters
Dear R-users,
When I call Rterm from cygwin, I have no options but typing the exact syntax
the first time. If I happen to hit the "delete" key (backspace), R dies when
I press enter saying :
Error: ... (error concerning the function on the last line of text)
Execution halted
Perhaps some of you have experienced this and found work arounds? One has to
be pretty good to type without
2010 Mar 31
0
Installing JGR and rJava
Hello,
I am running:
R version 2.10.0 (2009-10-26)
Copyright (C) 2009 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
on a 64-bit RedHat box.
To encourage collegues to use R, I am trying to install "JGR", which
depends on "rJava", on the above machine. At first I received and error
saying Java was not available. My IT support, I am not admin. on this