Displaying 20 results from an estimated 23 matches for "shands".
Did you mean:
hands
2010 Aug 10
3
sapply/lapply instead of loop
Using the input below, can I do something more elegant (and more efficient)
than the loop also listed below to pad strings to a width of 5? The true
matrix is about 300K rows and 31 columns.
#######################
#INPUT
#######################
> temp
DX1 DX2 DX3
1 13761 8125 49178
2 63371 v75 22237
3 51745 77703 93500
4 64081 32826 v72
5 78477 43828 87645
>
2011 Jun 24
2
SQL Changing Data Type
Passing in two dates to a sql statement (sqldf). Is returning a factor. Tried
setting back to a Date via as.Date, but get an error the error: character
string is not in a standard unambiguous format. Any thoughts appreciated.
Code/Results listed below:
> summary(df.possible.combos)
Date Hour
Min. :2011-03-01 Min. : 0.00
1st Qu.:2011-03-23 1st Qu.: 5.75
2010 Jun 28
6
Basic question - more efficient method than loop?
I'm guessing there's a more efficient way to do the following using the index
features of R. Appreciate any thoughts....
for (i in 1:nrow(dbs1)){
if(dbs1$Payor[i] %in% Payor.Group.Medicaid) dbs1$Payor.Group[i] =
"Medicaid"
if(dbs1$Payor[i] %in% Payor.Group.Medicare) dbs1$Payor.Group[i] =
"Medicare"
if(dbs1$Payor[i] %in% Payor.Group.Commercial)
2005 Sep 03
2
xen unstable build domU kenel fails on entry.S
amd64:/usr/src/xen-unstable.hg#hg tip
changeset: 6597:a1de77c1486c5f35884e9f578b7f33b6bd75c362
tag: tip
user: shand@ubuntu.eng.hq.xensource.com
date: Sat Sep 3 03:36:29 2005
summary: Enable ''live'' migration from a tools pov; prior to this the
''live'' flag was
Which option in make ARCH=xen menuconfig should i disable to get rid of
2008 Nov 28
12
Guest - slow response to keystroke.
Hi folks,
Host - Debian Etch
Guests - Debian Etch.
Performed following steps to create duplicate guest, a mail server.
1)
# cp /etc/xen/guest-1.cfg /etc/xen/guest-2.cfg
edit guest-2.cfg changing the settings of:-
disk = [''file:/vserver/domains/guest-2_directory/disk.img,hda1,w'',
''file:/vserver/domains/guest-2_directory/swap.img,hda2,w'']
# Hostname
name
2010 Jan 28
2
Print lattice output to table?
I have beautiful box and whisker charts formatted with lattice, which is
obviously calculating summary statistics internally in order to draw the
charts. Is there a way to dump the associated summary tables that are being
used to generate the charts? Realize I could use tapply or such to get
something similar, but I have all the groupings and such already configured
to generate the charts. Simply
2003 Jul 25
2
Is dovecot NFS safe?
I'm migrating our mailserver from cyrus 2.0 to Postfix and Dovecot.
We're using maildirs delivered to /var/maildir, which is mounted via NFS
from a Netapp. My understanding was that maildir was completely happy
in an NFS environment but I've seen a couple messages here recently
which mention the dovecot index files not being NFS safe.
Are their any caveats or gotcha's that I
2003 Jul 25
0
FW: Is dovecot NFS safe?
This was ment for the list :)
Sorry Stuart, for the double email...
Regards,
Maikel.
> -----Original Message-----
> From: Maikel Verheijen
> Sent: Friday, July 25, 2003 3:40 PM
> To: 'Stuart Henderson'
> Subject: RE: [Dovecot] Is dovecot NFS safe?
>
>
> Hi,
>
> Be aware that also your .subscriptions file and .customflags
> are not nfs safe (yet)
2010 Nov 01
1
sqldf hanging on macintosh - works on windows
Have a long script that runs fine on windows (32 bit). When I try to run in
on two different macs (64 bit), however, it hangs with identical behavior.
I start with:
library(sqldf)
This results in messages:
Loading required package: DBI
Loading required package: RSQLite
Loading required package: RSQLite.extfuns
Loading required package: gsubfn
Loading required package: proto
Loading required
2007 May 06
2
prototype setStyle (background-image) relative url problem
Hi there,
hope I can explain this one! When I try to use a setStyle call and set
the backgroundImage property of an element, I''m having some problems
using a relative URL.
my directory structure is this:
SERVER_ROOT/context/javascript/tree.js
SERVER_ROOT/context/style/tree/tree.css
SERVER_ROOT/context/images/node_icons/open.png
SERVER_ROOT/context/images/node_icons/closed.png
in my
2010 Aug 10
3
Intersecting list vs rows in matrix
Know that if I have List_1 and List_2 that I can check to see if the
intersect via the code below:
List _1:
a, b, c, d, e, f, g
List_2:
z, y, x, w, v, u, b
length(intersect(List_1, List_2)) > 0
return = true
If instead I wanted to check a dataframe that is a "list of lists," how
would I do that by record without looping?
List _1:
a, b, c, d, e, f, g
List_2:
z, y, x, w, v,
2010 Jun 21
2
Return value associated with a factor
I am using the code below to extract census tract information.
save.tract$state, save.tract$county and save.tract$tract are returned as
factors. In the last three statements, I need to save the actual value of
the factor, but, instead, the code is yielding the position of the factor.
How do I instead return the value of the factor?
By way of example, for Lon=-82.49574 and Lat=29.71495, the code
2010 Jan 25
3
question on sqldf syntax
trying to structure sql to merge two datasets. structure follows:
dbs.possible.combos (all possible combinations of dates and places)
Date Place
1/1/10 N-01
1/1/10 S-02
1/2/10 N-01
1/2/10 S-02
etc...
dbs.aggregate (the raw data aggregated by date and location)
Date Place Days
1/1/10 N-01 6
1/1/10 S-02 10
1/2/10 S-02 5
Trying to merge so I look-up the values for each possible combo
dbs.final
2010 Aug 03
4
REmove level with zero observations
If I have a column with 2 levels, but one level has no remaining
observations. Can I remove the level?
Had intended to do it as listed below, but soon realized that even though
there are no observations, the level is still there.
For instance
summary(dbs3.train.sans.influential.obs$HAC)
yields
0 ,1
4685,0
nlevels(dbs3.train.sans.influential.obs$HAC)
yields
[1] 2
drop.list <- NULL
2006 Dec 06
3
HVM memory upper limit
Hello,
I''m trying to create a HVM virtual machine (windows guest) with 3G of
memory but this isn''t working. Xen create the domain but nothing happens
(the OS don''t start and the cpu time remains 0). Things start to work
with 2000MB or below. Is there some kind of upper limit for HVM virtual
machines?
I''m using a Dell PowerEdge 8250 machine with 16GB of memory.
2013 May 29
5
mcollective setup question
I am currently trying to get mcollective 2.2.4 up and running on RHEL
6 activeqm appears to be running and bound to the correct port, I see
the server and client connections to the activemq box. However when I
run mco ping all "seems to go well" except I get "No responses
recieved" and above that I get the following log messages,
debug 2013/05/29 17:02:12: activemq.rb:233:in
2010 Jan 11
1
Limiting number of tickmarks in lattice bwplot
Have a simple bwplot with 24 ordered factors across the x axis. I would like
to only label every 4th tick mark so that the labels fit. I tried
scales=list(x=list(tick.number=6)), but I still seem to get 24 tickmarks and
24 labels. Full code is below:
bwplot(SumOfIn.Use ~ Hour | Period,
scales=list(x=list(tick.number=6)),horizontal=FALSE,las=2,main="Rooms
Running",sub="Timeframe:
2010 Nov 02
1
class changed after execution with sqldf
When I run sqldf to merge two datasets, it's changing the Date (class date)
to a numeric value (class factor). Not sure why. Appreciate any insight.
Console output for two datasets and the merged dataset (via sqldf) listed
below.
> summary(df.aggregate)
Date Hour x
Min. :2010-07-01 0 : 64 Min. : 0.00
1st Qu.:2010-07-25 1 :
2010 Feb 10
2
Subscripting
Dataframe1 contains a list of specific dates. Dataframe2 contains a large
dataset, one element of which is Date. How do I create a subset of
Dataframe2 that excludes the dates from Dataframe1? I know how to do it with
a left outer join vs null in SQL, but I can't figure out how to do it more
directly via the subcripts that already exist?
Dateframe1
Date
1/1/2010
1/18/2010
Dataframe2
Date
2010 Jan 22
2
Question on Merge/Lookup
I need to merge three datasets and don't know how. If I were using SQL, I
would use df3, look up the characteristics of each date in df1 and the value
for each observation in df2.
df1 - unique list of Dates and characteristics of those dates
Date, YYYYMM, YYYYWW, DOW
df2 - the raw data
Date, Place, Value
df3 - all posibile combinations of Date + Place (via