Displaying 7 results from an estimated 7 matches for "ector".
Did you mean:
vector
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
To help users diagnose boot errors, especially with external devices
such as USB flash memory mass-storage, I've created this diagnostic
MBR.
It succinctly reports the values received from the BIOS, locates and
reads the active partition boot sector, reports the magic bytes and
and read-sector error code.
Holding down a shift key during boot will force CHS mode even if LBA is
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 M...
2009 Mar 30
0
[PATCH 0/1] v3: Add Diagnostic MBR for trouble-shooting
...is pressed force load from first hard disk (0x80)
To help users diagnose boot errors, especially with external devices
such as USB flash memory mass-storage, I've created this diagnostic
MBR.
It succinctly reports the values received from the BIOS, locates and
reads the active partition boot sector, reports the magic bytes and
and read-sector error code.
Holding down a shift key during boot will force CHS mode even if LBA is
detected. Holding down a Ctrl key will force loading the boot-sector
from the first hard-disk regardless of the BIOS drive-number in DL.
Detailed information on reporte...
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{>=...
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]':
ScheduleDAGRRList.cpp:1057: instantiated from
'void<unnamed>::RegReductionPriorityQueue<SF>::push(llvm::SUnit*)
[with SF = <unnamed>::td_ls_rr_sort]'
Sch...
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-ve...