联系方式

  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-23:00
  • 微信:codehelp

您当前位置:首页 >> OS程序OS程序

日期:2023-10-14 08:32

Data Mining for lecture
1 Sales Analysis
You are provided with historical sales data for 45 stores located in different regions in US - each
store contains a number of departments. The company also runs several promotional markdown
events throughout the year. These markdowns precede prominent holidays, the four largest of
which are the Super Bowl, Labor Day, Thanksgiving, and Christmas.
Data: There are two files:
? stores-data-set.csv contains anonymized information about the 45 stores, indicating the type and size of store.
? sales-data-set.csv contains Historical sales data, which covers to 2010-02-05 to
2012-11-01. Within this tab you will find the following fields: Store - the store number,
Dept - the department number, Date - the week, Weekly_Sales - sales for the given
department in the given store, IsHoliday - whether the week is a special holiday week.
Output:
You need to write the Spark program to output:
(a) The total sales for each store type. [10 pts (5 pts for code)] Note that the result should have 3
rows (header is not included)
(b) Average sales on Holidays vs. Non-Holidays, and determine if sales are generally higher
during holidays. [10 pts (5 pts for code)] Note that the result should have 2 rows (header is not
included)
1
2 People You Might Know
Write a Spark program that implements a simple “People You Might Know” social network friendship recommendation algorithm. The key idea is that if two people have a lot of mutual friends,
then the system should recommend that they connect with each other. For example, A and E
in Figure 1 have 3 mutual friends (i.e., B, C, D), which is a high number in this toy example.
But, if the two users are already friends, the system should not recommend them to each, even if
they share mutual friends. For example, E and F have one mutual friend G, but they are already
friends with each other.
Figure 1: A social network toy example.
Data:
? Associated data file is ego-facebook.txt in A1/.
? The file contains the edge list and has multiple lines in the following format:


Here, and are unique integer IDs corresponding to two unique user,
respectively. The pair denotes and are friends. Note that the friendships are mutual (i.e., edges are undirected): if A is friend with B then B is also friend with
A. For the friendship between A and B, we only have one edge in the data.
Algorithm: Let us use a simple algorithm such that, for each user u, the algorithm recommends
N = 10 users who are not already friends with u, but have the most number of mutual friends
in common with u.
Output:
? The output should contain one line per user in the following format:

where is a unique ID corresponding to a user and is a
comma separated list of unique IDs corresponding to the algorithm’s recommendation of
people that might know, ordered in decreasing number of mutual friends.
? Note: The exact number of recommendations per user could be less than 10. If a user has
less than 10 second-degree friends, output all of them in decreasing order of the number of
mutual friends. If a user has no friends, you can provide an empty list of recommendations.
If there are recommended users with the same number of mutual friends, then output those
user IDs in numerically ascending order.
2
Pipeline sketch: Please provide a description of how you used Spark to solve this problem.
Don’t write more than 3 to 4 sentences for this: we only want a very high-level description of
your strategy to tackle this problem.
Tips:
? Use Google Colab to use Spark seamlessly, e.g., copy and adapt the setup cells from Colab
0.
? Before submitting a complete application to Spark, you may go line by line, checking the
outputs of each step. Command .take(X) should be helpful, if you want to check the
first X elements in the RDD.
? For sanity check, your top 10 recommendations for user ID 1571 should be: 35, 247, 716,
719, 1526, 1527, 1528, 1529, 1530, 1531.
? The execution may take a while.
? You can also create a toy test dataset (e.g., using Figure 1) to help you debug the program.
What to submit
1.
You need to submit the following three files:
A short writeup contains
? Q1(a): The total sales for the 3 types, respectively. (5 pts)
? Q1(b): The average sales on Holidays vs. Non-Holidays. (5 pts)
? Q2: A short paragraph sketching your spark pipeline. (12 pts)
? Q2: The recommendations for the users with following user IDs: 10, 152, 288, 603,
714, 1525, 2434, 2681. (6 pts for each, 48 pts in total)
2. Your code for Q1. (10 pts)
3. Your code for Q2. (20 pts)


相关文章

【上一篇】:辅导FIT9136 Algorithms
【下一篇】:辅导FIT9136 Algorithms

版权所有:留学生编程辅导网 2021,All Rights Reserved 联系方式:QQ:99515681 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。