副标题: Analyzing Data from Facebook, Twitter, LinkedIn, and Other Social Media Sites
作者: Matthew A. Russell
出版社: O'Reilly Media
出版年: 2011-2-8
页数: 360
定价: GBP 30.99
装帧: Paperback
ISBN: 9781449388348
作者: Matthew A. Russell
出版社: O'Reilly Media
出版年: 2011-2-8
页数: 360
定价: GBP 30.99
装帧: Paperback
ISBN: 9781449388348
内容简介 · · · · · ·
Popular social networks such as Facebook, Twitter, and LinkedIn generate a tremendous amount of valuable social data. Who's talking to whom? What are they talking about? How often are they talking? Where are they located? This concise and practical book shows you how to answer these types of questions and more. Each chapter presents a soup-to-nuts approach that combines popular... (展开全部)
Popular social networks such as Facebook, Twitter, and LinkedIn generate a tremendous amount of valuable social data. Who's talking to whom? What are they talking about? How often are they talking? Where are they located? This concise and practical book shows you how to answer these types of questions and more. Each chapter presents a soup-to-nuts approach that combines popular social web data, analysis techniques, and visualization to help you find the needles in the social haystack you've been looking for -- and some you didn't know were there.
With Mining the Social Web, intermediate-to-advanced Python programmers will learn how to collect and analyze social data in way that lends itself to hacking as well as more industrial-strength analysis. The book is highly readable from cover to cover and tells a coherent story, but you can go straight to chapters of interest if you want to focus on a specific topic.
Get a concise and straightforward synopsis of the social web landscape so you know which 20% of the space to spend 80% of your time on
Use easily adaptable scripts hosted on GitHub to harvest data from popular social network APIs including Twitter, Facebook, and LinkedIn
Learn how to slice and dice social web data with easy-to-use Python tools, and apply more advanced mining techniques such as TF-IDF, cosine similarity, collocation analysis, document summarization, and clique detection
Build interactive visualizations with easily adaptable web technologies built upon HTML5 and JavaScript toolkits
This book is still in progress, but you can get going on this technology through our Rough Cuts edition, which lets you read the manuscript as it's being written, either online or via PDF.
via http://oreilly.com/c atalog/9781449394844 /
Amazon: http://www.amazon.co m/Mining-Social-Web- Finding-Haystack/dp/ 1449388345/
With Mining the Social Web, intermediate-to-advanced Python programmers will learn how to collect and analyze social data in way that lends itself to hacking as well as more industrial-strength analysis. The book is highly readable from cover to cover and tells a coherent story, but you can go straight to chapters of interest if you want to focus on a specific topic.
Get a concise and straightforward synopsis of the social web landscape so you know which 20% of the space to spend 80% of your time on
Use easily adaptable scripts hosted on GitHub to harvest data from popular social network APIs including Twitter, Facebook, and LinkedIn
Learn how to slice and dice social web data with easy-to-use Python tools, and apply more advanced mining techniques such as TF-IDF, cosine similarity, collocation analysis, document summarization, and clique detection
Build interactive visualizations with easily adaptable web technologies built upon HTML5 and JavaScript toolkits
This book is still in progress, but you can get going on this technology through our Rough Cuts edition, which lets you read the manuscript as it's being written, either online or via PDF.
via http://oreilly.com/c
Amazon: http://www.amazon.co
作者简介 · · · · · ·
Matthew Russell has completed nearly 50 publications on technology, including work that has appeared at scientific conferences and in Linux Journal and Make magazine. He is also the author of Dojo: The Definitive Guide (O’Reilly). Matthew is Vice President of Engineering at Digital Reasoning Systems and is Founder & Principal at Zaffra, a firm focused on agile web development.
豆瓣成员常用的标签(共53个) · · · · · ·
喜欢读"Mining the Social Web"的人也喜欢 · · · · · ·
按有用程度 按页码先后 最新笔记
-
第5页
Mining the Social Web - Example 1-3 實作這個範例時,出現錯誤:TwitterHTTPError: Twitter sent status 404 for URL: trends.json using parameters: () 答案在twitter API -GET trends上:因為deprecated了。要改用GET trends/:woeid,也就是像這樣的網址 http://api.twitter.com/1/trends/1.json 才可以取得。 換言之,程式要改為: 1.import twitter 2.twitter_search=twitter.Twitter(api_version='1') 3.trend... (更多)Mining the Social Web - Example 1-3實作這個範例時,出現錯誤:TwitterHTTPError: Twitter sent status 404 for URL: trends.json using parameters: ()答案在twitter API -GET trends上:因為deprecated了。要改用GET trends/:woeid,也就是像這樣的網址 http://api.twitter.com/1/trends/1.json 才可以取得。換言之,程式要改為:1.import twitter2.twitter_search=twitter.Twitter(api_version='1')3.trends=twitter_search.trends(id=1)书中最后一行:“[ trend['name'] for trend in trends['trends'] ]”,目前也不能运行。经过查找,需要改为:4. [ trend[u'name'] for trend in trends[0]["trends"] ]参考: http://blog.roodo.com/thinkingmore/archives/17641421.html http://iyken.blogspot.com/2011/11/python.html (收起)2012-02-12 18:05:09 1人收藏 回应
-
第108页
海皮树的朋友们 (生命不长,灿烂有时)
While there are usually a few general-purpose tools that work fairly well for most jobs, there aren’t any tools that work well for every job. *nix的极简哲学。 You have a price to pay either way; generally speaking, the price is either paid up front, when you store the data in special indexes (as you learned was the case with CouchDB in the previous chapter), or at query time, when you look ... (更多)
*nix的极简哲学。While there are usually a few general-purpose tools that work fairly well for most jobs, there aren’t any tools that work well for every job.
要么在每次修改的时候花时间做检索,要么花时间在查询上。 (收起)You have a price to pay either way; generally speaking, the price is either paid up front, when you store the data in special indexes (as you learned was the case with CouchDB in the previous chapter), or at query time, when you look it up and don’t have the benefit of those indexes.
2011-12-29 01:28:24 2回应
-
第5页
Mining the Social Web - Example 1-3 實作這個範例時,出現錯誤:TwitterHTTPError: Twitter sent status 404 for URL: trends.json using parameters: () 答案在twitter API -GET trends上:因為deprecated了。要改用GET trends/:woeid,也就是像這樣的網址 http://api.twitter.com/1/trends/1.json 才可以取得。 換言之,程式要改為: 1.import twitter 2.twitter_search=twitter.Twitter(api_version='1') 3.trend... (更多)Mining the Social Web - Example 1-3實作這個範例時,出現錯誤:TwitterHTTPError: Twitter sent status 404 for URL: trends.json using parameters: ()答案在twitter API -GET trends上:因為deprecated了。要改用GET trends/:woeid,也就是像這樣的網址 http://api.twitter.com/1/trends/1.json 才可以取得。換言之,程式要改為:1.import twitter2.twitter_search=twitter.Twitter(api_version='1')3.trends=twitter_search.trends(id=1)书中最后一行:“[ trend['name'] for trend in trends['trends'] ]”,目前也不能运行。经过查找,需要改为:4. [ trend[u'name'] for trend in trends[0]["trends"] ]参考: http://blog.roodo.com/thinkingmore/archives/17641421.html http://iyken.blogspot.com/2011/11/python.html (收起)2012-02-12 18:05:09 1人收藏 回应
-
第108页
海皮树的朋友们 (生命不长,灿烂有时)
While there are usually a few general-purpose tools that work fairly well for most jobs, there aren’t any tools that work well for every job. *nix的极简哲学。 You have a price to pay either way; generally speaking, the price is either paid up front, when you store the data in special indexes (as you learned was the case with CouchDB in the previous chapter), or at query time, when you look ... (更多)
*nix的极简哲学。While there are usually a few general-purpose tools that work fairly well for most jobs, there aren’t any tools that work well for every job.
要么在每次修改的时候花时间做检索,要么花时间在查询上。 (收起)You have a price to pay either way; generally speaking, the price is either paid up front, when you store the data in special indexes (as you learned was the case with CouchDB in the previous chapter), or at query time, when you look it up and don’t have the benefit of those indexes.
2011-12-29 01:28:24 2回应
-
第5页
Mining the Social Web - Example 1-3 實作這個範例時,出現錯誤:TwitterHTTPError: Twitter sent status 404 for URL: trends.json using parameters: () 答案在twitter API -GET trends上:因為deprecated了。要改用GET trends/:woeid,也就是像這樣的網址 http://api.twitter.com/1/trends/1.json 才可以取得。 換言之,程式要改為: 1.import twitter 2.twitter_search=twitter.Twitter(api_version='1') 3.trend... (更多)Mining the Social Web - Example 1-3實作這個範例時,出現錯誤:TwitterHTTPError: Twitter sent status 404 for URL: trends.json using parameters: ()答案在twitter API -GET trends上:因為deprecated了。要改用GET trends/:woeid,也就是像這樣的網址 http://api.twitter.com/1/trends/1.json 才可以取得。換言之,程式要改為:1.import twitter2.twitter_search=twitter.Twitter(api_version='1')3.trends=twitter_search.trends(id=1)书中最后一行:“[ trend['name'] for trend in trends['trends'] ]”,目前也不能运行。经过查找,需要改为:4. [ trend[u'name'] for trend in trends[0]["trends"] ]参考: http://blog.roodo.com/thinkingmore/archives/17641421.html http://iyken.blogspot.com/2011/11/python.html (收起)2012-02-12 18:05:09 1人收藏 回应
-
第108页
海皮树的朋友们 (生命不长,灿烂有时)
While there are usually a few general-purpose tools that work fairly well for most jobs, there aren’t any tools that work well for every job. *nix的极简哲学。 You have a price to pay either way; generally speaking, the price is either paid up front, when you store the data in special indexes (as you learned was the case with CouchDB in the previous chapter), or at query time, when you look ... (更多)
*nix的极简哲学。While there are usually a few general-purpose tools that work fairly well for most jobs, there aren’t any tools that work well for every job.
要么在每次修改的时候花时间做检索,要么花时间在查询上。 (收起)You have a price to pay either way; generally speaking, the price is either paid up front, when you store the data in special indexes (as you learned was the case with CouchDB in the previous chapter), or at query time, when you look it up and don’t have the benefit of those indexes.
2011-12-29 01:28:24 2回应
书评 · · · · · · 我来评论这本书
热门评论 最新评论
可以先阅读电子版
-
- 迪云 [[挖掘社交网络].(Mining.the.Social.Web).Matthew.A.Russell.文字版.pdf http://www.verycd.com/topics/2894974/ 带源代码...... (2回应)2012-02-17 4/4有用来自 机械工业出版社华章公司2012版
就像cover一样。dam beaver
-
- titus yes, damn beaver -,-# 社交网站的DM需要用直推来隐藏看似复杂却又简单,做起来简单却确实不是随便谁都能做好的工作。 UPLOAD YOUR SOUL TO THE ULTIMATE INTERNET!哈哈哈哈!......2012-02-14 来自 机械工业出版社华章公司2012版
"Mining the Social Web"的论坛 · · · · · ·
| 东南大学的影印版已经出来了 | 来自老好人 | 2 回应 | 2011-07-29 |
在哪儿买这本书? · · · · · ·
- 亚马逊 (RMB 238.50)
- 查看1家网店价格 (238.50元起)
- 加入购书单 多本比价 批量购买 已在购书单
这本书的其他版本 · · · · · · ( 全部3 )
- 机械工业出版社华章公司版 2012-2 / 21人读过 / 有售
- 东南大学出版社版 2011-5 / 1人读过 / 有售
以下豆列推荐 · · · · · · (全部)
- 数据挖掘与个性化推荐 (刘未鹏(pongba))
- 十年学会编程 (黠之大者)
- Programming (cruyff)
- 复杂网络和社会网络分析 (Evan)
- Social Network (Kidult)
谁读这本书?
喜欢这本书的人关注的活动 · · · · · ·
订阅关于Mining the Social Web的评论:
feed: rss 2.0











