search for: sku

Displaying 20 results from an estimated 167 matches for "sku".

Did you mean: skb
2013 Mar 15
2
Help finding first value in a BY group
I have a large Excel file with SKU numbers (stock keeping units) and forecasts which can be mimicked with the following: Period <- c(1, 2, 3, 1, 2, 3, 4, 1, 2) SKU <- c("A1","A1","A1","X4","X4","X4","X4","K2","K2") Forecast <- c(99, 1...
2006 Jun 07
8
erb Regex ?
Hi Got a column named ''sku'' in a table named ''product'' <%= product.sku %> ...looks like this.... ''1234_56'' These last two chars (56) are an audio Track number. I ultimately want to display: Track <%= product.sku %> I can isolate the first part with /\d+\_/...
2017 Aug 28
0
regex - optional part isn't considered in replacement with gsub
"Please, consider that some SKUs have "-" in the middle, for example: "PG-9021". Then you need to include these in the list of patterns you gave. Try it again -- this time with a **complete** list. -- Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and stickin...
2008 Aug 09
1
Reshape set operations?
I have mange to use the library reshape to give me data structures that I want. Specifically: m2008 <- melt(t2008, id.var=c("DayOfYear","Category","SubCategory","Sku"), measure.var=c("Quantity")) m2007 <- melt(t2007, id.var=c("DayOfYear","Category","SubCategory","Sku"), measure.var=c("Quantity")) r2008 <- cast(m2008, DayOfYear ~ variable | Sku, sum) r2007 <- cast(m2007, DayOfYear ~ va...
2017 Aug 27
6
regex - optional part isn't considered in replacement with gsub
Hello, I need some help with regex. I have this to sentences. I need to extract both "49MU6300" and "LE32S5970" and put them in a new colum "SKU". A) SMART TV UHD 49'' CURVO 49MU6300 B) SMART TV HD 32'' LE32S5970 DataFrame for testing: ecommerce <- data.frame(a = c(1,2), producto = c("SMART TV UHD 49'' CURVO 49MU6300", "SMART TV HD 32'' LE32S5970"))...
2008 Apr 28
0
Special Offer on Chapman & Hall Publications
...t includes R code for all examples and R notes to help explain the R programming concepts. List Price: $79.95/ £34.99 Discount Price: $63.96/ £27.99 For more details and to order: http://www.crcpress.com/shopping_cart/products/product_detail.asp?sku=C5459 Introduction to Probability with R Kenneth P. Baclawski, North Eastern University, Boston, MA, USA Publication Date: 1/24/2008 Catalog #: C6521 ISBN: 9781420065213 Number of Pages: 384 Based on a popular course taught by the late Gian-Carlo Rota of MIT, with many new topics co...
2008 Aug 11
3
Exporting a list of lists
I have a list List(Sku=" ", Shape=1, Scale=3, DayOfYear=daylist) Note: picture daylist as c(2,3,4,3) it is a list with variable length. Then I have a list of lists al <- c(al, List(List(Sku=" ", Shape=1, Scale=3, DayOfYear=daylist)) Note: same comment on daylist as above. So far this creates a l...
2017 Aug 27
0
regex - optional part isn't considered in replacement with gsub
Omar: I don't think this can work. For example number-letter patterns 4), 5), and 6) would all be matched by pattern 6). As Jeff indicated, you need to provide the delimiters -- what characters come before and after the SKU patterns -- to be able to recognize them. In a quick look at the text file you attached, the delimiters appeared to be either "-" or " " (blank) and perhaps <end of character string>. If that is correct or if you can tell us how to make it correct, then it's straightfo...
2008 Feb 27
1
Hmisc xYplot won't do conditioning on factors?
Hi, I am trying to replace (lattice) standard xyplot with xYplot variant from Hmisc package to be able to add error bars to my plots. However, this does not work, e.g: library(lattice) d <- data.frame( SKU=gl(3, 1, 21, labels=c("a", "b", "c")), Weekday=gl(7, 3, 21), QCRate=runif(21)) xyplot(QCRate ~ Weekday | SKU, data=d) (this plots nice 3 panels as per a,b,c conditionals) library(Hmisc) > xYplot(QCRate ~ Weekday | SKU, data=d) Error in Summary.factor(1:7, na....
2017 Sep 08
0
need help for finding related sales with R
Hello everyone. Could you please help me? I need to do some sales analysis and i'm stuk. I've got a dataset that contains next information: Sales_department; sales_manager; Client; transaction ID; Product (SKU), Cost, Gross income, Profitability Ineed to perfom an ABC analysis (by the Cost of sold products to this client) to find the A clients of each manager, i'm doing it this way: managers_ABC <- svod %>% group_by(Sales_department, sales_manager, Client) %>% summarise("Clients_...
2006 Oct 31
0
ANNOUNCEMENT: 20% Discount on the Latest R Books from Chapman & Hall/CRC Press
...pter reinforce the techniques and concepts presented. All data sets and code used in the book are available as a downloadable package from CRAN, the R online archive. Discounted Price: $39.95 / ?23.99 For more details and to order: http://www.crcpress.com/shopping_cart/products/product_detail.asp?sku=C5394&parent_id=&pc *** Generalized Additive Models: An Introduction with R Simon N. Wood, University of Bath, UK This book provides a thorough understanding of the theory and practical applications of GAMs and related advanced models. The author bases his approach on a framework of pena...
2008 Aug 05
1
RESHAPE cast help.
I have a set of data that is basically sales figures for a given year. It has columns for Yeaqr, Day Of Year, Sku, SubCatetory, and Category. The first few lines of data look like: Year DayOfYear Sku Quantity CatId Category SubCategory 1 2007 1 100091 1 10862 HOLIDAY Christmas 2 2007 1 100138 1 11160 PET COSTUMES Famous (Licensed) 3 20...
2007 Mar 05
0
ANNOUNCEMENT: 20% Discount on R books from Chapman & Hall/CRC Press
...repeated measures, and logistic regression data. This new edition includes R code for almost all the examples and a CD-ROM with all the datasets and SAS and R code. Discounted Price: $64.79 / ?35.99 For more details and to order: http://www.crcpress.com/shopping_cart/products/product_detail.asp?sku=C6196 *** Correspondence Analysis in Practice, Second Edition Michael Greenacre, Universitat Pompeu Fabra, Barcelona, Spain Publication Date: 5/7/2007 Number of Pages: 264 Presenting a comprehensive introduction that employs a practical approach to theory and applications, this new edition...
2008 Aug 27
1
Updating a list.
I have a list that is generated from the resape package function 'cast'. It consists of three columns, Sku, DayOfYear, variable it is generated like: r2007 <- cast(m2008, DayOfYear ~ variable | Sku, sum) Now DayOfYear can range from 1:365 but there are not necessarily that many rows in the list. What I want to do is make every row in the list of lenght 365 and have the values correspond to the sum...
2005 Oct 05
3
Shopping Cart: SKU and Product Confusion
...go. This is the predicament I am currently finding myself in: I''m building a shopping cart for a client''s new website. They sell clothing, which means that for each product (ie: T-Shirt), there are various sizes and colours (we''ll call these combinations). At first, the SKU #''s provided by the client were not specific to the combination each product offers. So, the related DB tables were essentially this: Table Products: =========== id | sku | title | price | etc... Table Colors: ========= id | color Table Sizes: ========= id | sizes Table Colors_Products...
2006 Feb 02
0
ANNOUNCEMENT: 20% discount on new R books from Chapman & Hall/CRC
...s useful information for students as well as statisticians and data analysts. All datasets and code used in the book are available as a downloadable package from CRAN. Discounted Price: $39.96/??23.99 For more details and to order: http://www.crcpress.com/shopping_cart/products/product_detail.asp?sku=C5394&parent_id=&pc= *** Generalized Additive Models: An Introduction with R Simon N. Wood This book aims to provide readers with a thorough understanding of the theory and practical applications of GAMs, to enable informed use of these very flexible tools and related advanced models. Th...
2007 Apr 03
2
Scraping and saving.
Hi, I''m working to scrape and save some ebooks. Mechanize has been wonderful so far. The link I''m having trouble with is this one. http://www.webscription.net/SendZip.aspx?SKU=0671578499&ProductID=379&format=H When I click that in the browser it saves it to a file named H_1632.zip. How do I get that name from the page. I suspect to save this to a file I would just do (if lnk is the lnk) lnk.click() but how do I save it and how do I get the name that the browser...
2008 Jul 26
1
Simple vector question.
I have some data that I read in via read.csv: sales2007 <- read.csv("Total2007.dat", header=TRUE) The data looks like: > sales2007[1:605,] Year DayOfYear Sku Quantity CatId Category SubCategory 1 2007 1 100091 1 10862 HOLIDAY Christmas 2 2007 1 100138 1 11160 PET COSTUMES Famous (Licensed) 3 2007 1 100194 1 10749 HATS, WIGS & MASKS Wigs - Women's 4 2007...
2010 Oct 31
1
Rails application Webservices
...d>Tubers</brand> <created-at type="datetime">2010-10-30T01:35:48Z</created-at> <id type="integer">1</id> <name>Yam</name> <price>&#163; 30</price> <quantity>100 tubers</quantity> <sku>WDW332</sku> <updated-at type="datetime">2010-10-30T01:35:48Z</updated-at> </product> </products> QUESTION::: How do i create a new product object at http://electric-sky-98.heroku.com/products with ruby HTTP POST -- You received this message be...
2008 Aug 11
0
ANNOUNCEMENT: 20% Discount on Books from Chapman & Hall/CRC Press!
.../www.crcpress.com> , select your title(s), and insert "952HW", the online discount code, in the promotion code field at checkout. Secure your order online today! ****NEW TITLES**** R Programming for Bioinformatics (http://www.crcpress.com/shopping_cart/products/product_detail.asp?sku=C6367) Robert Gentleman, Fred Hutchinson Cancer Research Center, Washington, U.S.A. Publication Date: 7/14/2008 Number of Pages: 328 This practical guide focuses on the programming skills needed to use R for the solution of bioinformatics and computational biology problems. It covers object-o...