Displaying 7 results from an estimated 7 matches for "ectors".
Did you mean:
vectors
2008 Jun 20
2
Problems with basic loop
...ully appreciated
First create a table
x<-table(SURVEY$n_0,exposed)
> x
exposed
False True
Under 16 24 1
16-19 68 9
20-24 190 37
25-34 555 204
35-44 330 87
45-54 198 65
55-64 67 35
65+ 10 8
Now ectors to store counts and column proportions
> xT<-x[,"True"]
> xF<-x[,"False"]
> yT<-x[,"True"]/colSums(x)
> yF<-x[,"False"]/colSums(x)
check length for dynamic looping
> length(yT)
[1] 8
now create loop
> for(i in 1:length(yT)){
+...
2009 Mar 30
0
[PATCH 0/1] Add Diagnostic MBR for trouble-shooting
...detected.
Detailed information on reported data and usage is in the header commentary
of mbr/mbr-diag.S; here is an example:
DIAG L D80h C3FFh H10h S3Fh P1 O00000020 MAA55h E00h
which means:
[L]BA addressing mode (alternative is [C]HS),
[D]isk 0x80,
[C]ylinders 0x3FF,
[H]eads 0x10,
[S]ectors 0x3F,
[P]artition active 1,
[O]ffset to boot-sector 0x00000020,
[M]agic bytes (of boot-sector) 0xAA55,
[E]rror code (from AH=0x42/0x02, int 0x13) 0x00
TJ (1):
Add Diagnostic MBR for trouble-shooting
mbr/Makefile | 6 +-
mbr/mbr-diag.S | 371 ++++++++++++++++++++++++++++++++++++++...
2009 Mar 30
0
[PATCH 0/1] v3: Add Diagnostic MBR for trouble-shooting
...ber in DL.
Detailed information on reported data and usage is in the header
commentary
of mbr/mbr-diag.S; here is an example:
DIAG L D80h C3FFh H10h S3Fh P1 O00000020 MAA55h E00h
which means:
[L]BA addressing mode (alternative is [C]HS),
[D]isk 0x80,
[C]ylinders 0x3FF,
[H]eads 0x10,
[S]ectors 0x3F,
[P]artition active 1,
[O]ffset to boot-sector 0x00000020,
[M]agic bytes (of boot-sector) 0xAA55,
[E]rror code (from AH=0x42/0x02, int 0x13) 0x00
TJ (1):
Add Diagnostic MBR for trouble-shooting BIOS boot-order problems.
mbr/Makefile | 6 +-
mbr/mbr-diag.S | 377 ++++++++++++...
2009 Nov 19
0
In the documentation of 'Ops.Date', please remove mention about "difftime", like in the documentation of 'DateTimeClasses' (PR#14072)
...ject of class=0A \code{"\link{difftime}"}=0Ais still t=
here. This is a snapshot from Ops.Date.Rd.=0A=0A\usage{=0A\special{date + x=
}=0A\special{date - x}=0A\special{date1 lop date2}=0A}=0A\arguments{=0A \i=
tem{date}{date objects}=0A \item{date1, date2}{date objects or character v=
ectors. (Character=0A vectors are converted by \code{\link{as.Date}}.)}=
=0A \item{x}{a numeric vector (in days) \emph{or} an object of class=0A =
\code{"\link{difftime}"}.}=0A \item{lop}{One of \code{=3D=3D}, \code{!=3D=
}, \code{<}, \code{<=3D}, \code{>}=0A or \code{>=3...
2008 Feb 29
2
[LLVMdev] [PATCH] REPOST: Scheduler Fix
I'm reposting this patch at the request of Evan. It fixes a problem with
std::priority_queue and _GLIBCXX_DEBUG.
-Dave
-------------- next part --------------
A non-text attachment was scrubbed...
Name: schedule_dag.diff
Type: text/x-diff
Size: 7731 bytes
Desc: not available
URL:
2008 Feb 29
0
[LLVMdev] [PATCH] REPOST: Scheduler Fix
It's not building:
usr/include/c++/4.0.0/bits/stl_queue.h: In member function 'void
std::priority_queue<_Tp, _Sequence, _Compare>::push(const typename
_Sequence::value_type&) [with _Tp = llvm::SUnit*, _Sequence = ll\
vm::container_reference_wrapper<std::vector<llvm::SUnit*,
std::allocator<llvm::SUnit*> > >, _Compare = <unnamed>::td_ls_rr_sort]':
2009 Feb 10
7
How to split a character vector into 3 vectors
Hi ,
Does any one know how to split a character vector , I have a vector X that
looks like this and each row has 3 characters
X
ASK
DGH
ASG
AUJ
FRT
I would like to split the vector into 3 vectors that look like this
X1 X2 X3
A S K
D G H
A S G
A U J
U R T
thanks
--
View this message in context: http://www.nabble.com/How-to-split-a-character-vector-into-3-vectors-tp21939492p21939492.html
Sent from the R help mailing list archive at Nabble.com.