Displaying 20 results from an estimated 44 matches for "jonah".
Did you mean:
jonas
2002 Mar 20
2
include exclude help please.
hi.
I know this is a big topic on the list, please forgive me.
rsync -avv --include "/film/jonah/**/sourceimages/*.tif" --exclude "*" /film /tmp
i'm trying to copy all *.tif 's that are in a */sourceimages/ directory
and that are only under /film/jonah.
i would like to copy the directory tree and tif files to /tmp
i was able to copy ever tif with:
rsync -a --include...
2012 Jan 17
2
net classification improvement?
Greetings,
I have generated several ROC curves and would like to compare the AUCs.
The data are cross sectional and the outcomes are binary. I am testing
which of several models provide the best discrimination. Would it be most
appropriate to report AUC with 95% CI's?
I have been looking in to the "net reclassification improvement" (see
below for reference) but thus far I can only
2008 Oct 22
1
forward stepwise regression using Mallows Cp
...went to the extractAIC help page and it too wasn't that helpful in explicitly telling me what to type.
Any help please? All I ask is that you don't flame me for not reading the help pages or the archives. I've spent hours. I guess I'm just inexperienced or something....
thanks!
jonah
Jonah Essers, MD
Clinical Fellow
Division of Gastroenterology and Nutrition
Children's Hospital Boston
300 Longwood Ave
Boston, MA 02115
617-355-6058(tel)/617-730-0495(fax)
2005 Jul 28
3
chess
...utting the chess pieces in the
correct
place - simply it seems that when i make somethign draggable it changes its
positioning
to relative - not so good for putting pieces on a board. Why is this ?
Also i can''t see an OnDrop callback in the API documentation. Is this
correct ?
cheers jonah
2006 Oct 11
2
out of memory... doing heavy IO on ocfs2 is wasting (low) memory?!
...researched Bugzilla, SVN, and the
lists and haven't seen any mention of it yet being fixed as of yet.
Kurt or Sunil, do you have a patch available that I could try?
Otherwise, what's the Bugzilla ID so I can follow it's progress. Any
help you can give would be appreciated. Thanks!
-Jonah
2011 Aug 15
1
constraining betas with mlogit package
I have been using the mlogit package but can't seem to figure out how to make constraints on the beta coefficients.
For example, I would like to force that two of my beta's are equal to each other.
Thanks in advance.
Jonah
2016 Nov 24
4
Can't get NUT slave to connect to master
Hi can anyone please help.
Although I have two servers in the same cabinet/room and sharing the same
UPS - they're on different networks.
I've tried everything I can find online, but whatever I do I can't get the
slave nut client to connect to the master.
When testing then on the same LAN, they DO work - but how do I allow the IP
of the slave to connect to the master when both on
2007 Sep 01
1
why doesn't as.character of this factor create a vector ofcharacters?
...e problem with your code.
If you have a data.frame with factors, then
df[df$a=="Abraham",]
returns a list. Each element of this list is a factor, and has a
different set of levels. Thus, look at the following output:
> c(df[df$a=="Abraham",])
$a
[1] Abraham
Levels: Abraham Jonah Moses
$b
[1] Sarah
Levels: Hannah Mary Sarah
$c
[1] Billy
Levels: Billy Bob Joe
It is quite obvious why it is so complicated to untangle these. I
think the best way would be:
one.line<- sapply(df[df$a=="Abraham",],as.character)
Michael
-----Original Message-----
From: r-help-boun...
2005 Jul 23
1
flicker with visual effects
hi there - I find i get a flicker on the penultimate frame of the effect in Firefox (1.04 and 1.06)
i don''t get the same behaviour with IE. is this simply a limitation of the browser or am i
doing something wrong ?
cheers
jonah
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails-spinoffs/attachments/20050723/d311b641/attachment.html
2016 Nov 25
3
Can't get NUT slave to connect to master
...asterstaticIP monuser at slavestaticIP
If yourself or anyone could please advise if this should work or if I need
something different in my hosts.allow file
Thank you very much once again.
On 25 November 2016 at 12:00, Roger Price <roger at rogerprice.org> wrote:
> On Fri, 25 Nov 2016, Jonah Naylor wrote:
>
> I don't think nut is built with TCP wrappers support, although the package
>> is listed as depending on libwrap...
>>
>
> Why would you have such a dependency if nut didn't use TCP Wrappers?
>
> I ran this command: ldd /sbin/upsd | grep libwra...
2016 Sep 12
3
Help with failing Nut slave/client connection
Hi can anyone please help.
I have two linux servers both with static IPs not using NAT.
My slave can't connect to my host. Whatever I try.
I have the same setup also on my LAN with two other machines and they talk
to each other and work great.
But my two machines with their own static IPs don't want to play. I've used
the same settings for these as I have on my LAN, with a master
2016 Nov 24
2
Can't get NUT slave to connect to master
...so I'm not too sure if
TCP wrappers are there or available...
This could be the problem, am I still able to add the wrappers in with
prebuilt packages?
Thanks very much once again. :)
On 24 November 2016 at 21:51, Roger Price <roger at rogerprice.org> wrote:
> On Thu, 24 Nov 2016, Jonah Naylor wrote:
>
> The servers can ping each other... The router log doesn't show anything
>> and I am the admin for the servers. The machines firewalls allow each
>> other's ips etc. Part of the issue is possibly that I just don't know if
>> I've set up NUT c...
2016 Nov 25
2
Can't get NUT slave to connect to master
Try ALL:ALL in /etc/hosts.allow temporarily. If that still doesn't work, it's likely something else. If it does, only then screw with creating narrow rules . . .
- Tim
On November 25, 2016 6:37:02 AM CST, Roger Price <roger at rogerprice.org> wrote:
>On Fri, 25 Nov 2016, Jonah Naylor wrote:
>
>> upsd : ipaddressofclientgoeshere
>
>If it were me I would write
>
> upsd : ipaddressofclient :\
> spawn (/bin/mail -r hosts.allow at localhost\
> -s '%s@%h accepted access to %d from %c'\
> sysadmi...
2007 Nov 04
3
Returning the mock associated with an expectation.
I was reading through the FlexMock docs and noticed the expectation
method .mock, which returns the original mock associated with an
expectation.
It looks really handy for writing nice all-in-one mocks like:
mock_user = mock(''User'').expects(:first_name).returns(''Jonah'').mock
So I started playing around with mocha and found I could actually
already do this!
But I''m not sure how. There''s no attr_reader on @mock, and I couldn''t
find out where this method is defined.
So, perhaps we could add this an explicit method on Expectati...
2016 Nov 25
2
Can't get NUT slave to connect to master
...not working. Also should
the "allowfrom = clientIPaddresshere" line be in my monuser entry in
upsd.users on the master, or should I take that out?
Thanks once again for the help.
On 25 November 2016 at 12:37, Roger Price <roger at rogerprice.org> wrote:
> On Fri, 25 Nov 2016, Jonah Naylor wrote:
>
> upsd : ipaddressofclientgoeshere
>>
>
> If it were me I would write
>
> upsd : ipaddressofclient :\
> spawn (/bin/mail -r hosts.allow at localhost\
> -s '%s@%h accepted access to %d from %c'\
> s...
2016 Nov 25
2
Can't get NUT slave to connect to master
...this command: ldd /sbin/upsd | grep libwrap.so
and it has returned no output.
Does this mean I have to compile from source or is there a way to add the
tcp wrapper support?
Thanks again.
On 24 November 2016 at 22:40, Roger Price <roger at rogerprice.org> wrote:
> On Thu, 24 Nov 2016, Jonah Naylor wrote:
>
> I installed Nut via apt-get, not from source (which I'd rather stick with
>> if possible just for ease of security updates etc) - so I'm not too sure if
>> TCP wrappers are there or available...
>>
>> This could be the problem, am I still able...
2009 Sep 06
1
Rosetta Stone errors
Hi guys. according to the wineappdb Rosetta Stone works fine. I can get it installed but when i try to run it i get the following errors. can anyone please help me. I have latest wine installed and i'm on kubuntu jaunty.
jonah at jonah-1101ha:~/.wine/drive_c/Program Files/Rosetta Stone/Rosetta Stone Version 3$ wine RosettaStoneVersion3.exe
err:ole:CoGetClassObject class {96749377-3391-11d2-9ee3-00c04f797396} not registered...
2007 Oct 13
2
vista on mongrel
On 10/13/07, Raj Prakash <spamraj at yahoo.com> wrote:
> Hello,
>
> I am having the exact same problem described by Jonah Fox here:
>
> http://rubyforge.org/pipermail/mongrel-users/2007-May/003647.html
>
> I was wondering if you have found a solution yet. It is not the session
> issue.
>
Are you sure about the session storage? have you tried changing it?
On XP with cookie store happens, and get fix...
2008 Oct 08
1
Lattice question: plotting two sets of data, defining groups for the second set
...l. The problem comes when trying to break out the
points by group. My sample code follows.
data1 <-
data.frame(Names=c(rep("Jon",9),rep("Karl",9)),Measurements=c(2,4,16,25,36,49,64,81,100,1,2,5,12,17,21,45,54,67),PlotAt=c(1:9,1:9))
data2 <-
data.frame(Names=c(rep("Jonah",9),rep("Beth",9)),Measurements=c(1:5,1,1,1,1,rep(20,9)),PlotAt=c(1:9,1:9))
Assume data1 looks good when smoothed and that data2 does not.
Plot the smoothed lines:
xyplot(
Measurements ~ PlotAt,
data = data1,
groups=Names,
type="smooth",
span=0.75,
degree=1,...
2007 Jul 10
1
why doesn't as.character of this factor create a vector of characters?
I'm trying to figure out why when I use as.character() on one row of a
data.frame, I get factor numbers instead of a character vector. Any
suggestions?
See the following code:
a<-c("Abraham","Jonah","Moses")
b<-c("Sarah","Hannah","Mary")
c<-c("Billy","Joe","Bob")
df<-data.frame(a=a,b=b,c=c)
#Suppose I'm interested in one line of this data frame but as a vector
one.line <- df[df$a=="Abraham"...