search for: table_b

Displaying 17 results from an estimated 17 matches for "table_b".

Did you mean: table_a
2018 May 02
0
Merging dataframes
...39;ll coded your example into R code: Table_A <- c('abc at gmail.com', 'John Chan', '0909') Table_A <- rbind(Table_A, c('bcd at yahoo.com', 'Tim Ma', '89089')) colnames(Table_A) <- c('Email', 'Name', 'Phone') Table_A Table_B <- c('abc at gmail.com', 'John Chan', 'M', '0909') Table_B <- rbind(Table_B, c('khn at hotmail.com', 'Rosy Kim', 'F', '7779')) colnames(Table_B) <- c('Email', 'Name', 'Sex', 'Phone') Table_B D...
2018 May 02
2
Merging dataframes
...le - Say I have two dataframes as below that are NOT equally-sized data frames (i.e., number of columns are different in each table): Table_A: Email Name Phone abc at gmail.com John Chan 0909 bcd at yahoo.com Tim Ma 89089 ...... Table_B: Email Name Sex Phone abc at gmail.com John Chan M 0909 khn at hotmail.com Rosy Kim F 7779 ..... Now, I have used - merge (Table_A, Table_B, by="Email", all = FALSE)...
2006 Mar 15
4
help with DRY violation
...able A in different places, depending on the controller. However, for each time i create a Table A instance, i also need to create an empty Table B instance. I tried to incorporate this into the model for Table A using various callbacks, after_create, after_save, before_create. Trying to set the table_b attribute to a new Table B instance and have table_b''s foreign key be the id the table_a object being created. However, i kept running into exceptions "undefined method ''construct_sql''. I checked my dev log and saw there was an INSERT query for table_b just after ta...
2006 Jan 03
3
Can I map 2 tables into one class
Can I map 2 tables into one class? Is there any pattern, e.g. using ActiveRecord aggregation? Thanks Szczepan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060103/fa2aed7c/attachment.html
2006 Aug 15
1
sorting attribute in list from foreign table
Hello, I currently have two tables. table_a ( id table_b_id other_attrs ) table b ( id name ) So table A holds an id from table B. During the listing of tuples in table A, it lists table A''s attributes. In place of the table B id, I check the id, and instead display the name corresponding to that id. Now I want to be able to sort the...
2005 Dec 20
7
wrong id for activerecord object when using :joins in mysql
I''m using a find with a :joins clause, like this: :joins => "JOIN table_b ON table_b.id=table_b_id" The records returned are used in a scaffold generated list page. The edit, show, and destroy links are getting the wrong id. They are getting the id of the table b record. When I run the query using mysql, I see that the query returns *2* id columns, the id of the m...
2010 Aug 19
1
Composite primary keys and :joins=>
..._key, code_key, name, ... # PKs are type_key and code_key, there is no id col and I cannot alter this db Table-B: # each row has only the code as a foreign_key, the type_key is hard-coded to "FOOKEY" an_id, code, ... Models: class TableB < AR::Base set_table_name ''table_b'' set_primary_key :an_id # singular PK belongs_to :code_name, :class_name=>''TableA'', :primary_key=>:pk_code_name, :foreign_key=>:code SELECT = "*, table_a.name AS pk_name" def self.get_all all(:select=>SELECT, :joins=>:c...
2006 May 31
0
belongs_to without referencing an id as a foreign key?
Hello everyone, Here''s my problem for the day: I have three tables that look a little like the following table_a id table_b id position table_a_id name table_c id table_a_id table_b_position There will be many rows in table_c that have the same table_a_id, and the same table_b_position. These will all be referencing the same name value in table_b. The row in table_b may or may not exist, and table_b_position...
2007 Mar 15
5
rake spec:views no transaction error
Hello, I have recently upgraded to the 0.8.2 release of rSpec, and I am receiving the following message with each view spec execution: WARNING: there is no transaction in progress I have upgraded the rspec_on_rails plugin as well, and both the model and controller tests are working flawlessly. Is there some simple step I missed? thanks for the input. -Chris -------------- next part
2006 Mar 21
0
Nested One-To-Many ActiveRecord Question
I have a set of one-to-many relationships, nested 4 deep. In other words: table_A has_many table_B, table_B belongs_to table_A, has_many table C, table_C belongs_to table_B, has_many table D, table_D belongs_to table_C Now, I want to to find on table_A, based on criteria in table_D, and I want to paginate it. And I need fields from all four tables in the result set. Does anyone know h...
2006 Jul 10
10
has_many :through and foreign key parameters
I just took my HABTM and turned it into a :through since my join table has another "non-joiny" attribute. I went from this: has_many_and_belongs_to :jobs, :join_table => ''tablename'', :foreign_key => ''x'', :association_foreign_key => ''y'' to this: has_many :jobs, :through =>
2018 May 02
0
Merging dataframes
...le - Say I have two dataframes as below that are not equally-sized data frames: Table_A: Email Name Phone abc at gmail.com<mailto:abc at gmail.com> John Chan 0909 bcd at yahoo.com<mailto:bcd at yahoo.com> Tim Ma 89089 ...... Table_B: Email Name Sex Phone abc at gmail.com<mailto:abc at gmail.com> John Chan M 0909 khn at hotmail.com<mailto:khn at hotmail.com> Rosy M F 7779 ..... Now, I have used - merge (Table_A,...
2006 May 08
0
ActiveRecord and refreshing column info
Let''s say I want to find out what column names exist in two tables, table_a and table_b. One way I''ve been doing this is using ActiveRecord and the column info it returns. After establishing a connection for ActiveRecord, I do the following: ActiveRecord::Base.set_table_name("table_a") column_names_a = ActiveRecord::Base.column_names ActiveRecord::Base.set_table...
2012 Jun 14
1
readHTMLTable function - unable to find an inherited method ~ for signature "NULL"
...le, this code works fine a <-"http://www.zam.com/forum.html?forum=21&p=2" table_a <- readHTMLTable(a, header = TRUE, which = 1, stringsAsFactors = FALSE) but, this website gives me an error - b <-"http://www.mmo-champion.com/forums/266-General-Discussions/page2" table_b <- readHTMLTable(b, header = TRUE, which = 1, stringsAsFactors = FALSE) Error in function (classes, fdef, mtable) : unable to find an inherited method for function "readHTMLTable", for signature "NULL" I think this is due to the structure of the website but i'm not ve...
2018 May 01
4
Merging dataframes
Hi, May I please ask how I do the following in R. Sorry - this may be trivial, but I am struggling here for this. For two dataframes (A and B), I wish to identify (based on a primary key-column present in both A & B) - 1. Which records (rows) of A did not match with B, and 2. Which records of B did not match with A ? I came across a setdt function while browsing, but when I tried
2007 Feb 13
16
Error against latest trunk while testing via spec for model
Hi I just did an update to lates trunk ================= context "Given a generated venue_spec.rb with fixtures loaded" do fixtures :venues specify "fixtures should load two Venues" do Venue.should have(2).records end end ================== gives me ========== 1) TypeError in ''Given a generated venue_spec.rb with fixtures loaded fixtures should load two
2008 May 22
14
Specifying certain tables NOT to be cleared each example?
Is it possible to specify that certain tables not be cleared on each example. I''ve inherited a project where a good amount of enumerated data is stored in the database (US States, statuses, about 15-20 tables worth. Over all, it''s a reasonable decision that leads to solid production code (acts_as_enumerated is good). This data is read-only and relatively static; any