search for: brand

Displaying 20 results from an estimated 3184 matches for "brand".

Did you mean: band
2010 Sep 26
4
How to update an old unsupported package
Hi all, I have a package that is specific to a task I was repetitively using a few years ago. I now needed to run it again with new data. However I am told it was built with an older version or R and will not work. How can I tweak the package so it will run on 11.1? It was a one-off product and has not been maintained. Is there a way to "unpackage" it and repackage it to work? I
2013 Jan 22
2
Creating a Data Frame from an XML
Hello, I'm attempting to read information from an XML into a data frame in R using the "XML" package. I am unable to get the data into a data frame as I would like. I have some sample code below. *XML Code:* Header... Data I want in a data frame: <data> <row BRAND="GMC" NUM="1" YEAR="1999" VALUE="10000" /> <row BRAND="FORD" NUM="1" YEAR="2000" VALUE="12000" /> <row BRAND="GMC" NUM="1" YEAR="2001" VALUE="12500" /> <ro...
2005 Dec 15
3
session scope?
Hi all, I''m working on a Rails application. In this application I retrieve a list of ''brands'' using a method somewhere defined in my controller: private def get_brands @brands = Product.find_by_sql("select distinct brand from products"); end However, I display this information in a listbox in the template for my controller. This means @brands should be ava...
2009 Jun 02
9
XML::LibXML::Reader
is there anybody who knows how we can get child values using libxml (Reader class) def xml_import_to_brands require''xml'' reader = XML::Reader.file(''c:/brands.xml'') . . .
2004 Aug 01
2
Strange Problem with "proj" and "aov" for split-plot analysis output
...argument. I've checked to make sure that the vector object names are not used outside of the data frame for the experiment data on my computer. There is no way this could happen when using Rweb. Rick B. Here are the details: # here is the experiment data > choco.split.04 subject brand ctime type 1 christian h 104.000 mc 3 christina h 33.500 mc 5 ERIN h 46.000 mc 7 gautam h 25.295 mc 11 joe h 75.000 mc 15 Lei h 44.500 mc 9 helen n 42.500 mc 13 jonathon n 55.500 mc 17 pablo n 47.000 m...
2006 Aug 09
1
Migrating a Field to External Model
I have a model Product with an attribute ''brand''. Currently it is a simple attribute, however, I am migrating it to a separate model Brand so that I can have other attributes with each brand. I created the the model and created and ran the migration to create the new table. So far so good. Then I created a separate migration...
2013 Jan 22
1
Create a Data Frame from an XML
Hello, I'm attempting to read information from an XML into a data frame in R using the "XML" package. I am unable to get the data into a data frame as I would like. I have some sample code below. *XML Code:* Header... Data I want in a data frame: <data> <row BRAND="GMC" NUM="1" YEAR="1999" VALUE="10000" /> <row BRAND="FORD" NUM="1" YEAR="2000" VALUE="12000" /> <row BRAND="GMC" NUM="1" YEAR="2001" VALUE="12500" /> <ro...
2006 Jan 13
3
related drop down list / ajax
...gt; <option value="">Select category</option> <% @categories.each do |category| %> <option value="<%= category.id %>"> <%= category.title %> </option> <% end %> </select> <select id=''brand_id_container'' name=''brand_id_container''> <option value=''''>No Brand</option> <% for brand in @brands -%> <option value=''<%= brand.id %>''><%= brand.title %></option> <% end -%&g...
2008 Jul 22
2
ActiveRecord Associations issue
...LL, PRIMARY KEY (`id`), KEY `FK_CARS_MODELS` (`model_id`), CONSTRAINT `FK_CARS_MODELS` FOREIGN KEY (`model_id`) REFERENCES `models` (`id`) ); CREATE TABLE `webcars_development`.`models` ( `id` int(11) NOT NULL auto_increment, `name` varchar(64) NOT NULL default '''', `brand_id` int(11) NOT NULL default ''0'', `created_at` datetime default NULL, `updated_at` datetime default NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_idx` (`nome`), KEY `FK_MODELS_BRAND` (`brand_id`), CONSTRAINT `FK_MODELS_BRAND` FOREIGN KEY (`brand_id`) REFERENCES `brands`...
2007 May 30
2
newb trying to figure out ActiveRecord relationships
3 tables. item, brand, commercial item -------- id name brand_id name brand --------- id name commercial ---------- id item_id The idea is that a commercial will have one item. each item will have brand. and a brand may have zero to many items. I can''t figure out how to make the relationships for my models...
2005 Mar 13
5
ASTCC - how to use different brands?
I just downloaded the new astcc and it includes now a new field in the list of the cards: Brand Great! How can I use it in the dialplan? bye Ronald
2009 Nov 08
2
Counting non-empty levels of a factor
Hi everyone, I'm struggling with a little problem for a while, and I'm wondering if anyone could help... I have a dataset (from retailing industry) that indicates which brands are present in a panel of 500 stores, store , brand 1 , B1 1 , B2 1 , B3 2 , B1 2 , B3 3 , B2 3 , B3 3 , B4 I would like to know how many brands are present in each store, I tried: result <- aggregate(MyData$brand , by=list(MyData$store) , nlevels) but I got: Group.1 x 1 , 4 2 , 4 3 , 4 wh...
2006 Aug 02
1
Ordering the many in a many to one relationship
I have a many-to-one relationship between a model named Category(one) and a model named Brands (one). How can I get ActiveRecord to order the brands by the "name" attribute? This seems like a simple question and I can think of long ways around it but there has go to be a way to do this by accessing @category.brands . Can anyone help? I tried the code below in the controller but it...
2014 Oct 03
1
Lost audio on forwarded calls
OK, been messing with Asterisk for a long time and I have my opinion on where the issues lies but sometimes it's just nice to see what others think that can relate :-) Here goes.. Inbound calls flow like this:Tier 1 Provider (SIP) > Asterisk 1.8 > Name Brand PBX - Calls work fine Outbound calls flow like this:Name Brand PBX > Asterisk 1.8 > Tier 1 provider (SIP) - Calls work fine Problem is being reported on that many (not all) calls have no audio when they are forwarded. Example of forwarded call:Inbound call comes in from Tier 1 Provider >...
2012 Nov 13
1
help formatting data for clustering
Hi, I'm a R beginner. I have data of this form: user_id, brand_id1, brand_id2, ..... for example: 1 , 45 , 32, 45, 23 2 , 34 4, 11, 43, 45 I'm looking for the right procedure to be able to cluster users. I am especially interested to know which functions to use at each step. I am currently able to load the data in a data frame, each row's name being...
2003 Dec 30
4
Assignments in loops
...to do: carmakes <- c('BMW','Chrysler','Citroen','Fiat','Ford','Holden','Honda', 'Mercedes','MG','Mitsubishi','Nissan','Peugeot','Renault','Subaru','Toyota', 'VW') for (brand in carmakes) { fyle <- paste("c:/data/cars03/",brand,".txt",sep="") brand <- read.table(fyle, header = TRUE, sep = "\t",na.strings = c("-","POA"), colClasses=c("character",rep("numeric",7)),...
2018 Jun 01
4
Regroup and create new dataframe
Hello folks, I have a big project to work on and the dataset is classified so I am just going to use my own example so everyone can understand what I am targeting. Let's take Target as an example: We consider three brands of tape: Target brand, 3M and Avery. The original data frame has 4 columns: Year of Record, Product_Name(which contains three brands of tape), Sales, and Region. I want to create a new data frame that looks like this: Year of Record Sales Region Target Brand 3M...
2009 Feb 25
7
Solaris 8/9 branded zones on ZFS root?
Hi all, I have a situation where I need to consolidate a few servers running Solaris 9 and 8. If the application doesn''t run natively on Solaris 10 or Nevada, I was thinking of using Solars 9 or 8 branded zones. My intent would be for the global zone to use ZFS boot/root; would I be correct in thinking that this will be OK for the branded zones? That is, they don''t care about the underlying file system type? Or am I stuck with using UFS for the root file systems of Solaris 8 and 9 brande...
2011 Aug 04
3
#create tests fail when I add FriendlyId to my model
I am doing controller testing, and I can''t seem to get the create method test to pass when friendly_id is added to the mix. If I comment it out of the model, the tests all pass perfectly. The moment I add it back in, the error looks like this: 1) Error: test_create_valid(BrandsControllerTest): FriendlyId::BlankError: FriendlyId::BlankError app/controllers/brands_controller.rb:16:in `create'' test/functional/brands_controller_test.rb:27:in `test_create_valid'' Here''s the relevant line in brand.rb: has_friendly_id :name, :use_slug =&...
2009 Jun 24
1
Compile driver for new kernel rpm
...pment Engineer Research and Development | Pinnacle Micro Direct: +27-11-265-3020 | Fax: +27-11-265-3277 chadley at pinnacle.co.za www.pinnacle.co.za<http://www.pinnacle.co.za/> Proline Computers<http://www.pinnacle.co.za/proline/> | AMD<http://www.pinnacle.co.za/hardware/products/?brand=28> | Apacer<http://www.pinnacle.co.za/hardware/products/?brand=29> | Canon<http://www.pinnacle.co.za/canon/> | Dicota<http://www.pinnacle.co.za/hardware/products/?brand=67> | D-Link <http://www.pinnacle.co.za/networking/products/?brand=37> | Hauppauge!<http://www.pinn...