Displaying 2 results from an estimated 2 matches for "pagen".
Did you mean:
page
2006 Mar 21
2
Rails newbie can''t initialize a new Paginator object
...The default list of all product_data
@product_datum_pages, @product_data = paginate :product_data,
:per_page => 10
else
page = (@params[:page] ||= 1).to_i
offset = (page - 1) * 10
# Note: ERROR OCCURS HERE
# I''ve tried both:
# ActionController::Pagenator.new and
# ActionController::Pagination::Paginator.new
# They don''t work either.
@product_datum_pages = Pagenator.new self, @results.length, 10,
page
@product_data = @results[offset..(offset + 10 - 1)]
end
end
When I try to run it, I get a "nameError: un...
2008 Nov 03
2
Multiple plots on multiple devices
Hi List,
This is possibly a newbie error. I have however searched long and hard
and haven't found a solution.
I am attempting to plot multiple lattice graphs in R, plotting 4 per
page and moving on to a new device to plot the next 4 and so on. (I want
to do this in R and not export to a pdf etc)
I notice that in S-PLUS multiple tabs are opened in one device, R does
not seem to have this