search for: id_unique

Displaying 3 results from an estimated 3 matches for "id_unique".

Did you mean: bb_unique
2009 Feb 11
2
How to apply table() on subdata and stack outputs
...jack', 'jack', 'jack') var_interest <- c("happy","unhappy", "", "happy", "unhappy", 'soso','happy') input.df <- data.frame(id=id, var_interest=var_interest) input.df wanted.df <- #output dataframe I want id_unique <- c('tom','jack') happy_freq<-c(1,2) unhappy_freq<-c(1,1) soso_freq<-c(0,1) miss_freq<-c(1,0) output.df <-data.frame(id_unique=id_unique, happy_freq=happy_freq, unhappy_freq=unhappy_freq, soso_freq=soso_freq, miss_freq=miss_freq) output.df [[alternative HTML ver...
2007 Nov 18
2
Issues adding sub-menu items
...;m working on. I''m currently stuck when it comes to adding another item to the sub-menus. I have a menu item by the name of "Tools" and I would like to add a sub-menu item called "Find Unique Fields" but it doesn''t show up when I try to run it. If I add a Wx::ID_UNIQUE and a handle for the event the program fails. What do I need to do or what I''m I missing. I appreciate your response. Thanks, Glenn #!/usr/bin/env ruby begin .... .... .... class HL7Query < Wx::Frame def initialize(title) super(nil, :title => title, :size => [ 8...
2008 Jan 13
6
Graceful way to handle execution expired and bad URI errors?
...error message for the execution expired after a certain time period would be great. Here''s the method code: [code def feed_widget_details @page_object = getPageObject if @page_object.has_chatter_source?(0) @blog_url = "#{WEB_SERVER}/controller/rss/blog/#{@page_object.id_unique}" elsif @page_object.has_chatter_source?(1) @blog_url = ''http://reverb.feedxi.com/Warm.xml?url='' + @page_object.blog_feed else @blog_url = @page_object.blog_feed end end [/code] and here'' s the view code: [code cache({:controller => &qu...