search for: thing1

Displaying 9 results from an estimated 9 matches for "thing1".

Did you mean: things
2002 Dec 23
1
Strange axis labels?
...rather long label to a y-axis, and it's so long that it won't fit into one line. However, things get strange when I try and split it over 2 lines. The problem seems to be the plus/minus symbol, which means I have to use expression(). I'm using R1.6.1 on Windoze 2000. As an example: thing1 <- expression(paste("log odds of survival probability ( " %+-% "95% C.I.)", sep=" ") thing2 <- expression(paste("log odds of survival probability \n( " %+-% "95% C.I.)")) plot(c(1,2), c(1,2), ylab=thing1) par(mar =c(2.1, 6.1, 2.1, 2.1));...
2006 Feb 16
1
HABTM -VS- belongs_to/has_many, for self-referential joins
...has_many relationships in it (I think this is better because then I could do some interesting complex reporting on the "Helps" table, such as "who helps the most number of other things?"). Any ideas how to set this up in the Models? And, what would be the right way to say: thing1.helps << thing2 (i.e. we need to document the fact that thing1 helps thing2)? Thanks, -Greg Greg Edwards CTO, Eyetools Inc. greg.railslist@eyetools.com <mailto:gedwards1@eyetools.com> (916) 792 4538 -------------- next part -------------- An HTML attachment was scrub...
2006 May 25
5
Is there a way to abstract the updating of other parts of the page after an Ajax request without putting using the standard view file?
Hey all, I''d like to abstract the process of updating different portions of the page after an Ajax request has taken place. Rather than simply putting the extra view logic in the standard rjs template, it seems to give better separation if there is a split between the core view logic (ie, inserting a row in a table), and updating any associated portions of the page. Is this possible? I
2006 Jan 06
2
Re: Some advice on DB modeling
I have more or less the same problem. I''m trying to build a system where users can enter their friends. But the solutions seems not to work for me. I used same sql: CREATE TABLE `friends` ( `user_id` int(11) NOT NULL default ''0'', `friend_id` int(11) NOT NULL default ''0'', KEY `user_id` (`user_id`), KEY `friend_id` (`friend_id`),
2006 Jan 30
4
Warning message when returning multiple items
In my function I am trying to return multiple computed items (separated by commas). The function does what I need, but I get a warning message that multi-argument returns are deprecated. Is this a warning I should heed, or is there a more elegant and warning free way of achieving the same end? Thanks --------------------------------- [[alternative HTML version deleted]]
2007 Nov 12
15
If form changed ask if you really want to exit page...
First things first: Hi all! I''ve been sucked into prototype and script.aculo.us develpment thanks (because of?) the Symfony PHP framework... I''d like to implement a feature on some admin pages, but I can''t seem to find the right search term to google it; I want to ask the user to confirm exit of a page, if she has changed anything on the forms displayed on it. I have
2013 Oct 17
1
Can't restore from GPFS snapshots, disk_free error
...ave snapshots set up to be accessible in every directory as the invisible directory .snap The snapshots are in the following format: /usr/lpp/mmfs/bin/mmcrsnapshot 1MB `TZ=GMT date + at GMT-%Y.%m.%d-%H.%M.%S` ?and look like this from the UNIX level: ~ecgarris/RSFS/.snap/@GMT-2013.10.16-20.00.01/thing1 I've set up shares like this: [homes] path = %H/RSFS comment = RSFS Home Directories browseable = No shadow:snapdir = .snap # shadow:basedir = %H/RSFS shadow:fixinodes = yes shadow:snapdirseverywhere=yes (I commented out basedir, in case it was...
2015 Mar 31
2
emailing plain text to exchange/outlook
I know this isn't CentOS-specific, but it is probably a common problem - does anyone have a solution? If you mail something that is plain text from linux a recipient using outlook, it will remove line breaks more or less randomly. There is a way to tell outook to put them back as you read each message, but most people just think I sent it wrong. Is there something you can do to make a
2006 Jun 03
2
Parent listing children.
My database is set up as Categories > Things associated by category_id and has_many and belongs_to. How would I go about listing all the categories and under each Category is it''s children? Is there an easy rails way to do this - preferably without using acts as tree? Any help is appreciated - thanks! -- Posted via http://www.ruby-forum.com/.