search for: ofir

Displaying 13 results from an estimated 13 matches for "ofir".

Did you mean: fir
2006 Mar 27
2
403 Forbidden Error
I''m getting a 403 Forbidden error when I try to access the rails welcome page. I''ve followed the instructions for implementing rails on Apache2 at http://wiki.rubyonrails.org/rails/pages/Tutorial using an alias, but isn''t working. Can anyone help me out? Thanks. -Ofir -- Posted via http://www.ruby-forum.com/.
2009 Mar 11
1
adding text and other elements to ggplot2 plots
Hello, I really like the interface and flexibility of the ggplots package. However, I cannot find how to add text to a plot (like the 'text' and 'rect' functions in the graphics package). I will appreciate any suggestions. Thanks, Ofir. -- View this message in context: http://www.nabble.com/adding-text-and-other-elements-to-ggplot2-plots-tp22455395p22455395.html Sent from the R help mailing list archive at Nabble.com.
2006 Aug 30
1
Rails + Apache FCGI Client Auth BUG
...pache: <Location /myapp> SSLVerifyClient require SSLVerifyDepth 10 </Location> <Files ~ "\.(cgi|fcgi|shtml|phtml|php3?)$"> SSLOptions +StdEnvVars +ExportCertData </Files> Please help, I''m stuck and frustrated, could this be a bug? Thanks. -Ofir -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gma...
2004 Nov 25
2
Turning strings into expressions
Hello, I am running R 1.9.1 om Windows 2000 SP4. My problem is as follows: Say I have a dataframe my.frame with column names A and B. I have a string, >my.string [1] "A==1 & B==2" And I would like to retrieve the subset corresponding to my.string, that is, from my.frame and my.string I would like to get the result of subset(my.frame,A==1 & B==2) So I need to find a way
2008 Mar 31
1
Problem in working with domain DFS links
..., dp.hostname, dfs_path)); return NT_STATUS_NOT_FOUND; } Is there a reason for this checking inside get_referred_path? If not, I will be happy to supply the above suggest patch. Best regards, Ofir.
2004 Nov 25
4
Creating lists from matrices
Hello, I am using R 1.9.1 on Windows 2000 SP4. I have the following problem: Say I have a matrix, >my.matrix [,1] [,2] [,3] [1,] "A" "B" "C" [2,] "D" "E" "F" [3,] "G" "H" "I" I would like to apply an operation to this matrix which returns a list my.list containing the
2004 Nov 04
5
Conversion of strings to expressions
Hello, I'm not sure how to state my question in a technically accurate manner, so I'll use a short example to clarify my problem: Say I have a vector, vec<-c(1,2,3,2) I would like to be able to "reference" the vector by using the string containing the name of the vector - that is, I would like to know of some function which is able to convert the string "vec"
2009 Feb 24
0
creating bar charts with nested groups
...mpler solutions. I think the function bargraph.CI() should handle "one-way or higher experimental designs" but I can't figure out how and there are no examples on higher than two-way designs plotting using bargraph.CI() what is the simplest way to create such bar graphs? Thank you, Ofir. -- View this message in context: http://www.nabble.com/creating-bar-charts-with-nested-groups-tp22180918p22180918.html Sent from the R help mailing list archive at Nabble.com.
2009 Mar 27
1
Plot with nested x-labels
Hi there, I was wondering wether it is possible to creeate plots with nested lables like in excel? If yes, could anyone provide me the information how to do it? I've attached an image of an Excel plot to show you, what I'd like to plot with R :-) Ciao, Antje -------------- next part -------------- A non-text attachment was scrubbed... Name: plot.png Type: image/png Size: 4588 bytes
2009 Apr 20
1
doing zero inflated glmm for count data with fmr
...raged in the tray. This is the lmer parameters I have used: model<-lmer(count~ta*habitat*season*moon + (1|individual_id) + (1|position), data=countdata, family=poisson) I would really appreciate the help. I love working with R and it really changed the way I work with my data. Thanks again, Ofir. -- View this message in context: http://www.nabble.com/doing-zero-inflated-glmm-for-count-data-with-fmr-tp23136570p23136570.html Sent from the R help mailing list archive at Nabble.com.
2009 Feb 24
2
lmer, estimation of p-values and mcmcsamp
(To the list moderator: I just subscribed to the list. Apologies for not having done so longer before trying to post.) Hi all, I am currently using lmer to analyze data from an experiment with a single fixed factor (treatment, 6 levels) and a single random factor (block). I've been trying to follow the online guidance for estimating p-values for parameter estimates on these and other
2004 Nov 11
11
Logical "and"
Hello, I have the following very simple problem: Say I have two vectors, a<-c(1,7,4,5,9,11) b<-c(7,4,9) I would like to create a vector containing the elements in a which are not in b. Obviously, this is possible by writing a[a!=b[1] & a!=b[2] & a!=b[3]] But I would like a solution which is applicable to the situation where the number of elements in b is unknown. I have
2004 Oct 28
1
Problem with "outer" function
Hello, I am having a problem with the "outer" function. I am using R 1.9.1 on Windows 2000. My problem may be described as follows: I have a function f of 3 variables and 3 vectors, aa, bb and cc. I would like to evaluate this function in a 3-dimensional grid of points corresponding to all combinations of the elements of the 3 vectors. For example, if aa<-c(1,2) bb<-c(3,4)