Displaying 3 results from an estimated 3 matches for "nolabel".
Did you mean:
nlabel
2012 Feb 26
0
how to get the index of the element passed to the render view ?
...- unless @project.expenses.count > 0
No expenses
- else
#expenses
= f.fields_for :expenses do |f|
= render "backoffice/projects/expense_fields", :f => f
.clearfix
and the expense_fields partial is :
.row
= f.input :label, :wrapper => :nolabel, :input_html => { :class =>
"span3" }
I would like to test when the first expense item is displayed :
.row
- "if first expense.. test
= f.input :label, :input_html => { :class => "span3" }
# use the standard wrapper with labels...
2009 Feb 02
0
"a binary read error occurred" in read.dta
...a data file created using
Stata 10 in Linux and saved in the version 8/9 format using "saveold".
R fails to read in the file:
aa<-read.dta("myfile.dta")
Error in read.dta("myfile.dta"):
a binary read error occurred
If I resave the file in Stata using the "nolabels" option of saveold,
I get:
There were 50 or more warnings (use warnings() to see the first 50)
> warnings()
Warning messages:
1: In read.dta("myfilev8nolabel.dta") :
value labels (GEOEGPRV) for GEOEGPRV are missing
and many more such messages. That is, in this case it appears...
2012 Mar 26
0
Pareto frontier plots in three dimensions
...debug ) message(sprintf(" i = %2d scenario = %s", i,
sen))
point <- unlist(data[i, vecs]) # each row with selected cols
# active calls
quad.color <- rainbow(20)[i]
shroud(point, offset) # shroud creation call
if ( ! opt$nolabels )
{
text3d(point, # point labeling call
text = sen,
adj = label.adjust,
col = label.color)
}
}
if ( opt$debug ) message()
}
# add an origin marker
if ( opt$origin )
{
mess...