Displaying 20 results from an estimated 28 matches for "5436".
Did you mean:
536
2010 Jul 30
2
Summing by index
# build a sample data frame illustrating the problem
ids<-c(rep(1234,5),rep(5436,3),rep(7864,4))
years<-c(seq(1990,1994,by=1),seq(1991,1993,by=1),seq(1990,1993,by=1))
data<-seq(14,25,by=1)
data[6]<-NA
DF<-data.frame(Id=ids,Year=years,Data=data)
DF
Id Year Data
1 1234 1990 14
2 1234 1991 15
3 1234 1992 16
4 1234 1993 17
5 1234 1994 18
6 5436...
2015 Feb 24
3
Problema con bucle for
...;
escribió:
> Si he entendido bien el problema, lo que quieres hacer realmente es esto:
> x<- c(24,12,45,68,45)n<-length(x)res=0for(i in 2:n-1){ for(j in
> (i+1):n){ res<- res + (x[i]*x[j]) print(res) }}
> Cuya salida es:
> [1] 288[1] 1368[1] 3000[1] 4080[1] 4620[1] 5436[1] 5976[1] 9036[1]
> 11061[1] 14121
> Varias observaciones:
> 1:n-1 define un vector que empieza en 0, cuando la posición 1 en R es el 1
> por tanto x[0] no existe y no da resultado
> sum(x[i]*x[j]) es una operación que calcula la suma de un vector, en tu
> caso tienes un escalar...
2004 May 27
1
automating aov function
...ngth(m[1,])-20)
{tmp<- aov(m[,i]~treat, data=m)
{results [i] <- tmp}}
Any help would be appreciated.
Thanks,
Nina
Nina Joshi, PhD
NIH/NCI/ Genetics Branch
National Naval Medical Center, Bldg. 8, Rm. 5101
8901 Wisconsin Ave.
Bethesda, MD. 20889-5101
(301) 435-5436 - phone
(301) 496-0047 - fax
[[alternative HTML version deleted]]
2003 Sep 26
0
Strange warnings from chan_zap
Hi all,
so what does these messages that i get once in a while mean?
(Im running with a TE410P)
WARNING[1167306032]: File chan_zap.c, Line 5436 (pri_fixup): Can't fix up channel from 15 to 17 because 17 is already in use
WARNING[1167306032]: File chan_zap.c, Line 6064 (pri_dchannel): Hangup on bad channel 17
WARNING[1167306032]: File chan_zap.c, Line 5436 (pri_fixup): Can't fix up channel from 15 to 17 because 17 is already in use...
2004 Aug 09
0
Domain Security
...are for domain security, and allow
connections to non unix users that can be authenticated from a PDC without
making the file system a guest share?
Any help would be appreciated.
David W. Stacks
Old Hickory Consulting
Entergy Services, Inc.
Analyst - System Management
External: 870-541-5436
Internal: 8-760-5436
dstac90@entergy.com
2015 Feb 24
5
Problema con bucle for
Hola, quiero obtener la suma del producto de los elementos de un vector
y cuando construyo el código me aparecen una serie de NA que me impiden
calcular la suma. ¿Alguna sugerencia?
El código es el siguiente:
x<- c(24,12,45,68,45)
n<-length(x)
res<-numeric()
for(i in 1:n-1){
for(j in i+1:n){
res<- sum(x[i]*x[j])
print(res)
}
}
res
[[alternative HTML version deleted]]
2004 Mar 08
2
memory problem
...2500
However, I am still getting the error cannot create a vector of 523263 KB.
Any suggestions/ideas?
Thanks.,
Nina
Nina Joshi, PhD
NIH/NCI/ Genetics Branch
National Naval Medical Center, Bldg. 8, Rm. 5101
8901 Wisconsin Ave.
Bethesda, MD. 20889-5101
(301) 435-5436 - phone
(301) 496-0047 - fax
[[alternative HTML version deleted]]
2007 Jun 08
1
call problem...
...8 12:24:00 NOTICE[5385] cdr.c: CDR simple logging enabled.
Jun 8 12:24:00 WARNING[5385] loader.c:
/usr/lib/asterisk/modules/format_mp3.so: cannot open shared object
file: No such file or directory
Jun 8 12:24:00 WARNING[5385] loader.c: Loading module format_mp3.so failed!
Jun 8 12:24:32 NOTICE[5436] cdr.c: CDR simple logging enabled.
Jun 8 12:24:32 WARNING[5436] loader.c:
/usr/lib/asterisk/modules/format_mp3.so: cannot open shared object
file: No such file or directory
Jun 8 12:24:32 WARNING[5436] loader.c: Loading module format_mp3.so failed!
***********************************************...
2006 Jun 21
3
[PLUG] new plugin, acts_as_modified
Nothing special, just my first plugin. it came out of a request I saw on
the list from someone who wanted to be able to tell if a model''s attributes
had changed prior to being saved. Well, this plugin does just that (at
least I hope it does).
http://rubyforge.org/projects/actsasmodified/
Please see the README for details. Constructive comments and criticisms are
appreciated.
Chris
2016 Aug 22
1
CentOS 7, memory hungry (2.5GB) without user and heavy services running
...4800 S 0.7 0.2 20:48.88 vmtoolsd
692 root 20 0 436892 7988 6156 S 0.0 0.2 0:12.36
NetworkManager
1 root 20 0 273832 7128 3820 S 0.0 0.2 2:20.92 systemd
577 root 20 0 210456 5488 3708 S 0.0 0.1 0:03.85 abrtd
26833 root 20 0 143008 5436 4148 S 0.0 0.1 0:13.47 sshd
487 root 20 0 46424 5112 2652 S 0.0 0.1 0:02.26
systemd-udevd
592 root 20 0 207976 4480 3124 S 0.0 0.1 0:02.31
abrt-watch-log
1806 postfix 20 0 93512 4088 3028 S 0.0 0.1 0:02.80 qmgr
470 root 20 0 129132...
2010 Jul 18
2
Import of specific column of many space-delimited text files
Hi,
I have about 300 space-delimited text files and from each file I want to
import one specific column into R to create a data frame where all imported
columns are included.
Is there a smart way to do so?
Thanks!
--
View this message in context: http://r.789695.n4.nabble.com/Import-of-specific-column-of-many-space-delimited-text-files-tp2293273p2293273.html
Sent from the R help mailing list
2005 Oct 14
3
Busy not jumping n + 101 anymore
I recently upgraded my Asterisk system to the latest CVS-HEAD
Asterisk CVS HEAD built by bill@localhost on a i686 running Linux on
2005-10-12 13:34:09 UTC
Ever since this upgrade, the system is jumping n+101 if it gets a busy
on a Dial command, it is now proceeding to the next priority (n+1)
Has something changed with this? Is there a way to change it back?
Thanks,
Bill
--------------
2005 Aug 23
1
compile R with Portland Group compiler
...n - argument
#3 (regex.c: 4846)
PGC-W-0155-Long value is passed to a nonprototyped function - argument
#3 (regex.c: 4925)
PGC-W-0155-Long value is passed to a nonprototyped function - argument
#3 (regex.c: 5420)
PGC-W-0155-Long value is passed to a nonprototyped function - argument
#3 (regex.c: 5436)
PGC-W-0155-Long value is passed to a nonprototyped function - argument
#3 (regex.c: 5469)
PGC-W-0155-Long value is passed to a nonprototyped function - argument
#3 (regex.c: 5482)
PGC-W-0155-Long value is passed to a nonprototyped function - argument
#3 (regex.c: 5510)
PGC-W-0155-Long value is...
2007 Oct 22
2
bind-9.3.3-9.0.1 RPM BUILD error
Hi,
Centos 4.4 comes with bind 9.2.x. I want to upgrade it to bind
bind-9.3.3-9.x as bind 9.2.x had a security hole. So I downloaded
bind-9.3.3-9.0.1.el5.src.rpm from Centos5 repo and tried to built RPM out of
it. But, I failed to do it.
I got bellow errors.
./dbus_service.c: In function `dbus_svc_send_va':
./dbus_service.c:296: warning: implicit declaration of function
2011 Feb 12
1
Error with wine & wiso tools
...not create /home/jared/.wine/dosdevices/c:/wisotooltmp/menutext: Permission denied
wisotool: 5328: cannot create /home/jared/.wine/dosdevices/c:/wisotooltmp/menutext: Permission denied
wisotool: 5377: cannot create /home/jared/.wine/dosdevices/c:/wisotooltmp/menutext: Permission denied
wisotool: 5436: cannot create /home/jared/.wine/dosdevices/c:/wisotooltmp/menutext: Permission denied
wisotool: 5468: cannot create /home/jared/.wine/dosdevices/c:/wisotooltmp/menutext: Permission denied
wisotool: 5541: cannot create /home/jared/.wine/dosdevices/c:/wisotooltmp/menutext: Permission denied
wisot...
2011 Aug 17
3
Bug#638152: Error: Device 51712 (vbd) could not be connected. Hotplug scripts not working.
...0 ? S 01:56 0:00 \_ [xfslogd/1]
root 5433 0.0 0.0 0 0 ? S 01:56 0:00 \_ [xfslogd/2]
root 5434 0.0 0.0 0 0 ? S 01:56 0:00 \_ [xfslogd/3]
root 5435 0.0 0.0 0 0 ? S 01:56 0:00 \_ [xfsdatad/0]
root 5436 0.0 0.0 0 0 ? S 01:56 0:00 \_ [xfsdatad/1]
root 5437 0.0 0.0 0 0 ? S 01:56 0:00 \_ [xfsdatad/2]
root 5438 0.0 0.0 0 0 ? S 01:56 0:00 \_ [xfsdatad/3]
root 5439 0.0 0.0 0 0 ? S 01:56 0:00 \_...
2015 Jun 30
4
Outlook 2013 not fetching new mail/synchronization issues
...db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 09:09:17 [rx] Buffer (literal) of length 2646
IMAP: 09:09:17 [rx] )
IMAP: 09:09:17 [rx] * 19 FETCH (UID 14229 FLAGS () RFC822.SIZE 19076
INTERNALDATE "30-Jun-2015 06:37:43 +0200" BODY[] {19076}
IMAP: 09:09:17 [rx] Buffer (literal) of length 5436
IMAP: 09:09:17 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 09:09:17 [rx] Buffer (literal) of length 7168
IMAP: 09:09:17 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 09:09:17 [rx] Buffer (literal) of length 6472
IMAP: 09:09:17 [rx] )
IMAP: 09:09:17 [rx] * 20 FETCH (UID 14230 FLAGS (\Seen)...
2006 Feb 05
2
I appear to be attacking others
It looks like my CentOS 4.2 box is attacking other people with some type
of ftp attack. I got an email from somebody saying they were being
attacked by my IP address.
Further investigation /var/log/messages shows a whole bunch of sshd
attacks on me, none of which appear successful. I'm running ethereal
right now and I can see that my system is doing some kind of ftp attacks
on others.
2007 Apr 18
2
[Bridge] tg3 bridge problems
Hello,
I've got a very strange problem. Lately I've been setting up my linux
servers for network (layer2) redundancy with a bridge interface containing
two ethernet interfaces connecting to two switches. So far I didn't have
any problems with it, but now a very strange thing happens with a new
server I'm installing. The server is an ibm x346 having two onboard
BCM5721 cards, the
2015 Jun 30
0
Outlook 2013 not fetching new mail/synchronization issues
...db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 09:09:17 [rx] Buffer (literal) of length 2646
IMAP: 09:09:17 [rx] )
IMAP: 09:09:17 [rx] * 19 FETCH (UID 14229 FLAGS () RFC822.SIZE 19076
INTERNALDATE "30-Jun-2015 06:37:43 +0200" BODY[] {19076}
IMAP: 09:09:17 [rx] Buffer (literal) of length 5436
IMAP: 09:09:17 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 09:09:17 [rx] Buffer (literal) of length 7168
IMAP: 09:09:17 [db] OnNotify: asOld = 5, asNew = 5, ae = 3
IMAP: 09:09:17 [rx] Buffer (literal) of length 6472
IMAP: 09:09:17 [rx] )
IMAP: 09:09:17 [rx] * 20 FETCH (UID 14230 FLAGS (\Seen)...