Social Network Analysis

Slides:



Advertisements
Similar presentations
Fraction Of A Variable MA By: Benchmark MA.7.2.3: apply inverse relationships between addition, subtraction, multiplication, and division to solve.
Advertisements

No SQL is not about SQL No SQL is a Zoo.. Key-Value Stores Wide Column Stores Document Stores Graph Databases.
Introducing… elementool Issue Tracking The World’s First Web-Based Issue Tracking Software.
9.1 © 2004 Pearson Education, Inc. Exam Managing and Maintaining a Microsoft® Windows® Server 2003 Environment Lesson 9: Installing and Configuring.
Kalpesh Patel Ramprabhu Rathnam
Technology Terminology Jeopardy A - DE - FG - MM - SS - Z $100 $200 $300 $400 $500.
Aetna Navigator.
(BASIC MATH) QUIZ. START!! Click Here!! 1. What is Addition? a. The act or process of adding numbers. The act or process of adding numbers. b. The act.
Create Forms Lesson 5. Software Orientation Creating Forms A form is a database object –enter, edit, or display data from a table or query Providing.
A First Program Using C#
INTRODUCTION TO OPERATING SYSTEMS. An operating system is a program that controls the overall activity of a computer. Like an orchestra conductor an operating.
UNIT - 1Topic - 2 C OMPUTING E NVIRONMENTS. What is Computing Environment? Computing Environment explains how a collection of computers will process and.
CodeScope PC Style Window Generator. Introduction Currently being used by several thousand companies worldwide, CodeScope lets you add PC-style lookup.
TEAM Basic TotalElectrostatic ManagementAwareness&
GroupWise.AdvisorEvents.com Welcoming iFolder to the GroupWise Family Danita Zanrè Caledonia Gregg Hinchman Hinchman Consulting Danita Zanrè Caledonia.
Collaborative learning with TI-Nspire™ Technology Module G.
Find the sum or difference. Then simplify if possible.
PIKA Technologies Inc. RPC Client/Server Application Sample October 2009.
Experiment Management System CSE 423 Aaron Kloc Jordan Harstad Robert Sorensen Robert Trevino Nicolas Tjioe Status Report Presentation Industry Mentor:
FCM Workflow using GCM.
Introduction to eMS application Kirsti Mijnhijmer, Joint Secretariat 20th October 2015 – Copenhagen, Denmark.
Chapter 3.7 Segmentation. Memory allocation as a concept ● This presentation is about memory management specifically about memory segmentation and paging.
 Solve the following…  6 = x + 2  4 = q + 13  23 = b - 19  5b = 145  -7y = 28  2/3q = 18  1/5x = 2/7.
Installation of Ace-Extranet (SFTP). Step 1 – Go to ACEINDIA.com 1.Go to 2.Click on Technology 3.Now Click on Ace-Extranet.
Getting your STK license for METC 106 Go to the website and download STK 9.2.3http://
I’m Thinking of a Number
Addition Multiplication Subtraction Division. 1.If the signs are the same, add the numbers and keep the same sign = = If the.
By: Tameicka James Addition Subtraction Division Multiplication
PERMISSION ANALYZER 2 Reports NTFS permissions from the file system combined with user and group data from the Active Directory.
DEPARTMENT MODULE User’s Guide. Step 1. Click Files Step 2. Click Department.
Distributed Storage Middleware To build a distributed web storage service for small files; To provides RESTFUL interface to access files and directories.
Use Outlook Task API to access tasks stored on user’s mailbox. These REST API’s are  Simple to use.  Supports CRUD.  JSON structured.  OAuth 2.0.
Real-Time Dashboards on Power BI
Introduction to eMS application Kirsti Mijnhijmer, Joint Secretariat 1st June 2016 – Cork, Ireland.
Finding the point of intersection of two lines graphically Method 1 Find slope and y-intercept Equation must be y = mx + b form m is slope, b is y-intercept.
Crawling Twitter Data Konstantinos Semertzidis
Understanding and Improving Server Performance
Operating Systems & System Software
Moving Your RCRs Online Led by Bethany Boyle
Turning method call into an object
What are they? The Package Repository Client is a set of Tcl scripts that are capable of locating, downloading, and installing packages for both Tcl and.
Model Multiplication Name: _______________________________
How to change the LOGO on PecStarWeb V3.6
Problem Solving Review
All about social networking
Knowing your math operation terms
Key Terms Windows 2008 Network Infrastructure Confiuguration Lesson 6
Perl A simple test.
How to Fix the Automatic Repair Loop in Windows 8.1
How to fix Update Failure Error “0x800f081f” on Windows 10 KB ?
Fix Bitdefender Antivirus Error 2001 Give a Ring on: Bitdefender Support Number.
 1. In your iOS device, open Settings and head to “iTunes and App Store”  2. At the top of the store screen, tap on “Apple ID: 
Introduction to eMS application
Model Multiplication Name: _______________________________
November 8th, 2017 Matthew Davis and John Fink
Problem-Solving Steps Solve Problem-Solving Steps Solve
Introduction to eMS application
= = = = = Add like an Egyptian
Add and Subtract Mixed Numbers
Cloud Web Filtering Platform
Python 21 Mr. Husch.
How to add Loopback adapter in windows 7
Configuration Of A Pull Network.
Add or Subtract? x =.
Divide the number in C by 10.
Math Created by Educational Technology Network
= x 2 = = 20 4 x 5 = = 16 4 x 4 = = 18 6 x 3 = = 12 2 x 6 = 12.
Grauer and Barber Series Microsoft Access Chapter One
Graphing linear equations
Software Engineering and Architecture
Presentation transcript:

Social Network Analysis Recipe 1.13, 1.14 2013. 04. 22 Choi Dong-Soo mycds88@koreatech.ac.kr

Recipe 1.13 1.13 Harvesting Friends and Followers Problem Solution You want to harvest all of the friends or followers for a particular user. Solution Use the robust make_twitter_request function from Recipe 1.9 to collect all of the friend or follower ids via a long-running process.

Recipe 1.13

Recipe 1.13 REST API v1.1 Limits per window by resource For example, 15 requests per hour at 5,000 ids per request works out to be 300 thousand ids per hour.

Recipe 1.13 Cursor Tuple(Previous_Cursor, Next_Cursor)

Recipe 1.13 File Name oauth ID Screen Name Max ids 0:Friends / 1:Followers

Recipe 1.13 Result Friends

Recipe 1.13 Result Followers

Recipe 1.14 1.14 Performing Setwise Operations on Friendship Data Problem You want to operate on collections of friends and followers to answer questions such as “Who isn’t following me back?”, “Who are my mutual friends?”, and “What friends/followers do certain users have in common?”. Solution Use setwise operations such as the difference and intersection operations to answer these questions.

Recipe 1.14 Redis Install : http://redis.io/download http://itips.tistory.com/2 Install : http://redis.io/download Commands : http://redis.io/commands

Recipe 1.14 sadd () scard() sdiffstore() sinterstore() Add one or more members to a set scard() Get the number of members in a set sdiffstore() Subtract multiple sets and store the resulting set in a key sinterstore() Intersect multiple sets and store the resulting set in a key http://itips.tistory.com/2

Recipe 1.14 Oisoo 30000 24728 30000 friend_ids follows_ids http://itips.tistory.com/2

Recipe 1.14 Result http://itips.tistory.com/2

Recipe 1.14 24527 201 29799 friend_ids follows_ids http://itips.tistory.com/2

Thank you.