Displaying 20 results from an estimated 56 matches for "edmonds".
2006 Mar 21
9
IE flakiness?
I set up a simple BlindUp and BlindDown div that works seamlessy in Firefox
but doesn''t work as smoothly in IE. When blinding down, the whole div
flashes and then Blinds down. The same thing when blinding up. Is this
something that is fixable?
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2003 Mar 05
3
reading in tab delimited data in a loop
Dear all, 
I need to read in 4 sets of tab delimited data in a  loop. The 4 data sets are called "simu1.dat", "simu2.dat" and so on. I know what I need on the righthand side of the read.table expression but I can't the left hand side of it to work (see the line in bold below). Can you kindly help? Many thanks. 
simu1 <- matrix(0,30,3)
simu2 <- matrix(0,30,3)
simu3
2010 Feb 15
1
get current window (device) size
Dear R-listers, 
 
I am writing a function that will generate a simple plot for the user . The size of the window (that contains the plot) may not be what the user wants. 
 
Supposing the user adjusts the window to a size of her/his choice, I would like to be able to save the new window size and specify the plot to be of this new window size when the user calls my function again. My question is
2010 Aug 22
5
Help me... how to convert amchart to pdf
Hi
Guys
I need help.. I want to making 1 controller for covert html to pdf.. But
that html have amchart (swf). When I tried convert, the swf not loadded...
Any body can help me Please????
-- 
Senior Rails Developer
Anton Effendi - Wu You Duan
-- 
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send
2006 Mar 07
12
Edge Rails doesn''t work for my app
My app was fine before "rake freeze_edge" but after, I can no longer boot up
webrick.
I''m on Win Xp MySql backend and this is what I get
=> Booting WEBrick...
./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext/ker
nel/agnostics.rb:7:in ``'': Exec format error - rake tmp:create
(Errno::ENOEXEC)
        from
2010 Sep 20
2
For Your Own Info: Rails 2.3.2 is incompatible with Cucumber (0.8.5), Capybara (0.3.9) and Selenium-webdriver (0.0.17)
Railers,
I am running an application on Rails 2.3.2. For some reason within our
organization, we wish to remain on this version of Rails. For BDD/Testing,
we use Cucumber. So I installed Cucumber (0.8.5), Capybara (0.3.9) and
Selenium-webdriver (0.0.17). But when I run Cucumber on any feature, I get
an error saying *" wrong number of arguments (2 for 1) (ArgumentError)"*,
(Check here
2003 Mar 14
2
odd behaviour of 'while'?
Hi all, 
I have written a program which performs some data simulation, model fitting (to the simulated data) and then  it will save the parameter estimates from each loop into a matrix for later use.  Because convergence will not be met in some sets of the simulated data, I have used a 'while' instead of a 'for' loop for the job. With a 'for' loop I was not able to turn
2003 Mar 24
1
how to show a section of a matrix neatly (or row by row) that satisfies some condition
Hi all, 
I want to show the rows of a matrix (100x3) of which some of its elements satisfy a certain condition. In particular, how can I display the 2 rows of my matrix one after the 
other and not all all elements of column 1 first, then column 2 and so on. See the following. 
> finest[finest[,1] > 10^3] 
[1] 4.960632e+13 3.612619e+04 7.668204e+12 1.001911e+04 8.886153e-01
[6]
2003 Mar 24
0
how to show a section of a matrix neatly (or row by row ) that satisfies some condition
You're missing a comma in the subscript.  The comma tells it that your test
is for the appropriate rows.
You want: finest[finest[,1] > 10^3,]
Hope this helps,
Matt Wiener
-----Original Message-----
From: Edmond Ng [mailto:Edmond.Ng at lshtm.ac.uk] 
Sent: Monday, March 24, 2003 2:40 PM
To: r-help at stat.math.ethz.ch
Subject: [R] how to show a section of a matrix neatly (or row by row)
2007 Apr 04
1
fsck.ext3 reporting large file I cannot find
I am checking a file system (ext3) as shown below.  It is actually a fresh file
system, as I had deleted all partitions and created an ext3 file system.  But
when I run the check with the verbose option, it says I have one large file. 
Am I missing something here, or is it odd that I cannot find this large file it
is reporting?  I reviewed some documentation on ext3 file systems, and
experimented
2005 Sep 15
3
Mailing List Etiquette
...should not respond in kind, but
should try not to flame or bait people.
It take more than one person to get these things going, and just a
little restraint on both people's parts could prevent problems.
Can everyone who is a member of this list please read this document:
http://www.gweep.ca/~edmonds/usenet/ml-etiquette.html
Especially the section "I've been insulted! How should I respond?"
Please, please, please ... can we be civil and not attack people
personally.
ALSO
There is a forum at http://www.centos.org/modules/newbb/
It would be very good if people would post questi...
2010 Aug 31
6
ajax and partials
Hello all,
I am still very new to programming and wonder if I could get some help.
I have tried to figure this out myself but still having trouble with
some of the concepts.  I’ll do my best to explain the problem and
include the code.  I may be completely off track, so ANY direction
offered would be  deeply appreciated.
I have a question model / object which consists of a question, answers,
and
2005 Sep 29
2
how to fix the level-1 variances in lme()?
Dear all,
Edmond Ng (http://multilevel.ioe.ac.uk/softrev/reviewsplus.pdf) provides 
an example to fit the mixed effects meta-analysis in Splus 6.2. The 
syntax is:
lme(fixed=d~wks, data=meta, random=~1|study, weights=varFixed(~Vofd), 
control=lmeControl(sigma=1))
where d is the effect size, study is the study number, Vofd is the 
variance of the effect size and meta is the data frame.
2009 Sep 30
5
A rails plugin to generate css sprite image automatically
Hi guys,
I have written a rails plugin/gem to generate css sprite image
automatically.
The project repository is here: http://github.com/flyerhzm/css_sprite
It is based on RMagick and you need only define a rule from what
source images to a destination image, as follows:
forum_icon_vertical.gif:  # destination image file
  sources:                # source image file list
    - good_topic.gif
 
2006 Apr 09
4
Best RJS process for what I''m trying to do...
I just wanted to ping this off the list to get some advice since I''m
now pulling my hair out. Thanks in advance for taking any time to look
at this. It''s much appreciated. Now, my problem is my RJS is working
but it''s not inserting how I want it to insert. I have a partial I''m
rendering in my view that looks like this:
<ul
2010 Jun 24
0
Snowfall: "cannont open connection " problem
Dear R-listers, 
I  have been using Snowfall (version 1.84) for parallel computing on a quad-PC running Windows 7 for a month or so without much problem. I started having problems runnnig R with Snowfall over our network when a new Novell client was installed for Windows 7. I experinenced network mapping problem with this new client. Our network colleague provided a fix which worked but a little
2011 Jun 02
0
allowing individual level correlations to differ by cluster in lme in R
Dear R-listers, 
 
I am fitting bivariate mixed models for cost-effectiveness data of cluster randomized trials using lme in R.  So I have individuals nested within clusters. My response variable is a vector with bivariate response (individual level costs and effects) stacked into a single column. The covariates in my models are a constant and a treatment term. They are  response-specific, e.g. a
2006 Mar 07
0
Bug#355649: logcheck: ntp 'adjusting local clock' only matches positive corrections
...not
ii  mailx            1:8.1.2-0.20050715cvs-1 A simple mail user agent
ii  nullmailer [mail 1:1.02-1                simple relay-only mail transport a
ii  sysklogd [system 1.4.1-17.1              System Logging Daemon
logcheck recommends no packages.
-- debconf information excluded
-- 
Robert Edmonds
edmonds at debian.org
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
Url : http://lists.alioth.debian.org/pipermail/logcheck-devel/attachments/20060306/cab82778/attachment.pgp
2012 Apr 12
2
Bug#668550: libxs-dev conflicting with libxen-dev
Hi,
Since Xen has been around for a long long time, and that libxs is pretty
new in Debian (only few days), I'd say that libxs-dev should be fixed.
Do you agree?
Cheers,
Thomas
2006 Mar 03
1
rjs isn''t update_page problems
i have a list of, for example, meal_names. Basically, I can submit a name
and the name I add shows up in the list.I had this working wehn i created an
actual add.rjs template for it. So feeling good about my self, I attempted
to move it all to the controller and use some update_page goodness. Now it
the ajax middle doesn''t happen. I don''t get any errors but the list