Displaying 2 results from an estimated 2 matches for "corni".
Did you mean:
cornu
2007 Nov 24
1
Indexing and partially replacing 99, 999 in data frames
Dear WizaRds,
unfortunately, I have been unable to replace the '99' and '999' entries in
library(UsingR)
attach(babies)
as definitions for missing values NA, because sometimes the 99 entry is
indeed a correct value. Usually, or so I thought, NAs can
easily replace a, say, 999 entry via
mymat[mymat==999] <- "yodl"
in a matrix or data frame. Alas, the babies'
2005 Dec 19
3
Is there a list of html_options for the FormOptionsHelper?
I''m looking for a way to select a default value from a select box, like
this:
select("user", "role_id", Role.find_all.collect {|r| [ r.name, r.id ] },
{ :default_value => ''5'' }
(of course, there is no ":default_value")
If the form is being used on a ''create'' page, it should display a
default in the select box. If