Displaying 20 results from an estimated 1044 matches for "003".
Did you mean:
2003
2011 May 26
1
split data frame and manipulate
Hello,
I would like to split the attached data frame based on the DATE
variable. I'm having a real problem doing this. I am able to split
iso<-read.table(datuh.dat, header=TRUE, sep="", dec=".") #load
mylist=split(iso,iso$DATE) #split
str(mylist) #result seems a bit odd
However, after splitting I'm not able to call up certain variables of
the two lists. For
2011 Jan 10
1
Multiple imap crashes (Panic: file squat-trie.c: line 876 (squat_build_word): assertion failed: (i + bytelen <= size))
...t/libdovecot.so.0(+0x3b8cf) [0xb76fa8cf] -> /usr/dovecot-2/lib/dovecot/libdovecot.so.0(i_fatal+0) [0xb76d1"...
#4 0xb76fa8cf in i_internal_fatal_handler (ctx=0xbf8d26f4,
format=0xb74eefd4 "file %s: line %d (%s): assertion failed: (%s)",
args=0xbf8d2714 "U\361N\267l\003") at failures.c:645
status = 0
#5 0xb76d169e in i_panic (
format=0xb74eefd4 "file %s: line %d (%s): assertion failed: (%s)")
at failures.c:259
ctx = {type = LOG_TYPE_PANIC, exit_status = 0, timestamp = 0x0}
args = 0xbf8d2714 "U\361N\267l\003"...
2005 Jul 15
2
Strange problem with SIP and CAPI
...al("SIP/200-837b", "CAPI/010xxxxxx:b0478xxxxxx|30") in
new stack
-- data = 010xxxxxx:b0478xxxxxx
-- capi request omsn = 010xxxxxx
== found capi with omsn = 010xxxxxx
== CAPI Call CAPI[contr1/010xxxxxx]/80 with B3 -- creating pipe for
PLCI=-1
-- CONNECT_CONF ID=003 #0x0844 LEN=0014
Controller/PLCI/NCCI = 0x101
Info = 0x0
-- CONNECT_CONF ID=003 #0x0844 LEN=0014
Controller/PLCI/NCCI = 0x101
Info = 0x0
== received CONNECT_CONF PLCI = 0x101 INFO = 0
> sent CONNEC...
2010 Nov 02
5
density() function: differences with S-PLUS
Hello!
Someone know what are the difference between R and S-PLUS in the density()
function?
For example, I would like to reply this simple S-PLUS code in R, but I don't
understand which parameter I should modify to get the same results.
S-PLUS CODE:
density(1:1000, width = 4)
R-CODE:
density(1:1000, bw = 4, window = "g", n = 50, cut = 0.75)
I obtain the same x values, but
2011 Feb 02
1
Backtrace:dovecot/imap with 2.0.9 hg checkout from 1st of Febrauary
...sr/dovecot-2/lib/dovecot/libdovecot.so.0(+0x3b8cf) [0xb76308cf] -> /usr/dovecot-2/lib/dovecot/libdovecot.so.0(i_fatal+0) [0xb7607"...
#4 0xb76308cf in i_internal_fatal_handler (ctx=0xbfa70014,
format=0xb7426fd4 "file %s: line %d (%s): assertion failed: (%s)",
args=0xbfa70034 "UqB\267l\003") at failures.c:645
status = 0
#5 0xb760769e in i_panic (
format=0xb7426fd4 "file %s: line %d (%s): assertion failed: (%s)")
at failures.c:259
ctx = {type = LOG_TYPE_PANIC, exit_status = 0, timestamp = 0x0}
args = 0xbfa70034 "...
2011 Jan 04
16
[PATCH v2 0/5] add new ioctls to do metadata readahead in btrfs
Hi,
We have file readahead to do asyn file read, but has no metadata
readahead. For a list of files, their metadata is stored in fragmented
disk space and metadata read is a sync operation, which impacts the
efficiency of readahead much. The patches try to add meatadata readahead
for btrfs.
In btrfs, metadata is stored in btree_inode. Ideally, if we could hook
the inode to a fd so we could use
2020 Aug 10
2
[RFC] llvm-diva - Debug Information Visual Analyzer
...iva --sort=offset
--attribute=level
--print=scopes,symbols,types,lines
test.o
Logical View:
[000] {File} 'test.o'
[001] {CompileUnit} 'test.cpp'
[002] 2 {Function} extern not_inlined 'foo' -> 'int'
[003] 2 {Parameter} 'ParamPtr' -> 'INTPTR'
[003] 2 {Parameter} 'ParamUnsigned' -> 'unsigned int'
[003] 2 {Parameter} 'ParamBool' -> 'bool'
[003] {Block}
[004] 5 {Variable} &...
2010 Jun 01
3
problem with intToChar
..."\004" "\004" "\004" "\004" "\004" "\004" "\a" "\a" "\a"
[141] "\004" "\004" "\004" "\004" "\004" "\n" "\n" "\r" "\003" "\r"
[151] "\002" "\004" "\004" "\004" "\004" "\004" "\004" "\004" "\004" "\004"
[161] "\004" "\004" "\004" "\004" "\n" "\003&...
2011 Jan 12
0
Backtrace:dovecot/imap
...ecot/libdovecot.so.0(+0x3b8cf) [0xb77218cf] -> /usr/dovecot-2/lib/dovecot/libdovecot.so.0(i_fatal+0) [0xb76f8"...
#4 0xb77218cf in i_internal_fatal_handler (ctx=0xbf9bc424,
format=0xb7515fd4 "file %s: line %d (%s): assertion failed: (%s)",
args=0xbf9bc444 "UaQ\267l\003") at failures.c:645
status = 0
#5 0xb76f869e in i_panic (
format=0xb7515fd4 "file %s: line %d (%s): assertion failed: (%s)")
at failures.c:259
ctx = {type = LOG_TYPE_PANIC, exit_status = 0, timestamp = 0x0}
args = 0xbf9bc444 "UaQ\267l\003"
#...
2005 May 12
2
load data with scientific notations
Hi,
I have a data file whose values are scientific notations, for example:
9.1642537e+003, 6.7195295e+003, 4.8834487e+003, 3.7181589e+003, ...
How to load such data into R?
Thanks,
-Luke
2006 Jun 12
2
select the last row by id group
Dear R users:
I have a small test dataframe as the follows :
math = c(80,75,70,65,65,70)
reading = c(65,70,88,NA,90,NA)
id = c('001','001','001','002','003','003')
score = data.frame(id, reading, math)
> score
id reading math
1 001 65 80
2 001 70 75
3 001 88 70
4 002 NA 65
5 003 90 65
6 003 NA 70
Could someone advise me tips about how to select the last row from
each id group of 001, 002...
2007 Jan 27
2
unequal number of observations for longitudinal data
...for each
subject is not the same across the sample. The largest number of a subject
is 5 and the smallest number is 1.
now i want to make each subject to have the same number of observations by
filling zero, e.g., my original sample is
id x
001 10
001 30
001 20
002 10
002 20
002 40
002 80
002 70
003 20
003 40
004 ......
now i wish to make the data like
id x
001 10
001 30
001 20
001 0
001 0
002 10
002 20
002 40
002 80
002 70
003 20
003 40
003 0
003 0
003 0
004 ......
so that each id has exactly 5 observations. is there a function which can
allow me do this quickly?
[[alternative HTML vers...
2010 Feb 17
4
Question about "Title"
Hi,
I want to produce a pie chart with titles. I used the following code. So it created a pie chart for the percentage of the score for ID="002".
ID <-
c("001","001","002","002","002","003","003","003","004","004","005","005","006")
test <-
c("A","B","A","B","C","A","B","C","A","B","A","B"...
2016 Feb 04
0
AST-2016-003: Remote crash vulnerability when receiving UDPTL FAX data.
Asterisk Project Security Advisory - AST-2016-003
Product Asterisk
Summary Remote crash vulnerability when receiving UDPTL FAX
data.
Nature of Advisory Denial of Service...
2015 Apr 08
0
AST-2015-003: TLS Certificate Common name NULL byte exploit
Asterisk Project Security Advisory - AST-2015-003
Product Asterisk
Summary TLS Certificate Common name NULL byte exploit
Nature of Advisory Man in the Middle Attack
Susceptibility Remote Authenticated Sessions...
2015 Apr 08
0
AST-2015-003: TLS Certificate Common name NULL byte exploit
Asterisk Project Security Advisory - AST-2015-003
Product Asterisk
Summary TLS Certificate Common name NULL byte exploit
Nature of Advisory Man in the Middle Attack
Susceptibility Remote Authenticated Sessions...
2013 May 03
1
untar() error
...rs = TRUE)
> lapply(files, untar)
Error in rawToChar(block[seq_len(ns)]) :
embedded nul in string: 'II*\0Ì <\001´
\0\0`G\0\0\fn\0\0¸”\0\0d»\0\0\020â\0\0¼\b\001\0h/\001\0\024V\001\0À|\001\0l£\001\0\030Ê\001\0Äð\001\0p\027\002\0\034>\002\0Èd\002\0t‹\002\0
²\002\0ÌØ\002\0xÿ\002\0$&\003\0ÐL\003\0|s\003'
> untar(files[1])
Error in rawToChar(block[seq_len(ns)]) :
embedded nul in string: 'II*\0Ì <\001´
\0\0`G\0\0\fn\0\0¸”\0\0d»\0\0\020â\0\0¼\b\001\0h/\001\0\024V\001\0À|\001\0l£\001\0\030Ê\001\0Äð\001\0p\027\002\0\034>\002\0Èd\002\0t‹\002\0
²\002\0ÌØ\002\0xÿ\002\0$...
2018 Feb 21
0
AST-2018-003: Crash with an invalid SDP fmtp attribute
Asterisk Project Security Advisory - AST-2018-003
Product Asterisk
Summary Crash with an invalid SDP fmtp attribute
Nature of Advisory Remote crash
Susceptibility Remote Authenticated Sessions...
2007 Aug 23
3
RData File Specification?
...t;ds"]]
close(con)
But this takes up too much memory if the data set is too big. I can read in the file character-by-character, i.e. using readChar(), but it's obvious that the file format is not trivial. readChar(con,10000) for this demo yields:
RDX2\nX\n\0\0\0\002\0\002\004\001\0\002\003\0\0\0\004\002\0\0\0\001\0\0\020\t\0\0\0\002ds\0\0\003\023\0\0\0\002\0\0\0\016\0\0\0\003??\0\0\0\0\0\0@\0\0\0\0\0\0\0@\b\0\0\0\0\0\0\0\0\003\r\0\0\0\003\0\0\0\001\0\0\0\002\0\0\0\003\0\0\004\002\0\0\0\001\0\0\020\t\0\0\0\006levels\0\0\0\020\0\0\0\003\0\0\0\t\0\0\0\001a\0\0\0\t\0\0\0\001b\0\0\0\t\0\0...
2019 Jul 11
0
AST-2019-003: Remote Crash Vulnerability in chan_sip channel driver
Asterisk Project Security Advisory - AST-2019-003
Product Asterisk
Summary Remote Crash Vulnerability in chan_sip channel
driver
Nature of Advisory Denial of Service...