Over the past seven years, words written by me have hit millions of views. Here is a short talk I gave recently in a workshop at Hauz Khas Village recently
Over the past seven years, words written by me have hit millions of views. Here is a short talk I gave recently in a workshop at Hauz Khas Village recently
I am holding a workshop near my residence in Hauz Khas Village, Delhi, India
It is to teach Marketing via Internet, Branding via Blogging and other fun stuff to make money while having fun on the internet.
Here is the event
https://www.facebook.com/events/1399437753708150/
A 2 hour Workshop on Web Analytics and Social Media Analytics
By Ajay Ohri, Founder of DecisionStats and a Technology expert with two published books and blogs with lakhs of views.
10th April 2015, Friday
Venue: Hauz Khas Village
Learn Blogging
Spread your credentials to the entire world by Blogging! It becomes easy for professionals to prove their worth by showing their knowledge through their blog. A good blog earns money too. It definitely acts as your launching pad in the world.
Build Effective Profiles
93% of recruiters review social profiles of candidates while recruiting. Learn how to build awesome profiles on LinkedIn.
Web Analytics (Google Analytics) – Measure your traffic in websites. Improve your web traffic through organic Search Engine Optimization and Search Engine Marketing (Adwords).
What’s More?
Learn how to Run Marketing Campaigns on Twitter & Facebook Pages Facebook can help make and succeed businesses through it’s marketing features.Use Twitter hashtags and campaigns for promoting your product.
Step into a world of unlimited possibilities by a digital analyst training.
Entry fee: Rs 100 per person (Student I card) Rs 200 (normal)
Register :http://bit.ly/decisionstats
Contact: Sonam Tuteja – 9999659616 decisionstats2015@gmail.com
———————————————————————————-
New Zealand just made it to their first ever world cup final ( yes it is cricket) and they made it with a thrilling six ( like a home run) for the last ball. Congrats to New Zealand .Of course R was created in New Zealand too and Hadley Wickham is from New Zealand
I recently installed the rvest package from https://github.com/hadley/rvest and its now on CRAN as well
rvest helps you scrape information from web pages. It is designed to work with magrittr to make it easy to express common web scraping tasks, inspired by libraries like beautiful soup.
library(rvest)
lego_movie <- html("http://www.imdb.com/title/tt1490017/")
rating <- lego_movie %>%
html_nodes("strong span") %>%
html_text() %>%
as.numeric()
rating
#> [1] 7.9
cast <- lego_movie %>%
html_nodes("#titleCast .itemprop span") %>%
html_text()
cast
#> [1] "Will Arnett" "Elizabeth Banks" "Craig Berry"
#> [4] "Alison Brie" "David Burrows" "Anthony Daniels"
#> [7] "Charlie Day" "Amanda Farinos" "Keith Ferguson"
#> [10] "Will Ferrell" "Will Forte" "Dave Franco"
#> [13] "Morgan Freeman" "Todd Hansen" "Jonah Hill"
poster <- lego_movie %>%
html_nodes("#img_primary img") %>%
html_attr("src")
poster
#> [1] "http://ia.media-imdb.com/images/M/MV5BMTg4MDk1ODExN15BMl5BanBnXkFtZTgwNzIyNjg3MDE@._V1_SX214_AL_.jpg"
The most important functions in rvest are:
html().html_nodes(doc, "table td") (or if you’ve a glutton for punishment, use xpath selectors with html_nodes(doc, xpath = "//table//td")). If you haven’t heard of selectorgadget, make sure to read vignette("selectorgadget") to learn about it.html_tag() (the name of the tag), html_text() (all text inside the tag), html_attr() (contents of a single attribute) and html_attrs() (all attributes).xml(), then extract components using xml_node(), xml_attr(), xml_attrs(), xml_text() and xml_tag().)html_table().html_form(), set_values() and submit_form().guess_encoding() and repair_encoding().html_session(), jump_to(), follow_link(), back(), forward(), submit_form() and so on. (This is still a work in progress, so I’d love your feedback.)
While Hadley Wickham seems busy with reading excel files ( see https://github.com/hadley/readxl) maybe using rvest can help in more sports analysis now!
https://decisionstats.com/2013/04/25/using-r-for-cricket-analysis-rstats-ipl/
Meanwhile I am searching for equivalent of readHTMLtable
Decisionstats is now back on Facebook at https://www.facebook.com/ajayohri
Expect some surprising news there shortly!!!
AND
This is a brilliant movie by the talented Benedict Cumberbatch playing the genius Alan Turing and his war time adventures. It is also a tribute to the injustice served by gay people by then notions of British Justice and is a dramatized version of the actual true story of the pioneers of cryptology. Alas, their legacy is now in the hands of the GCHQ and NSA to establish digital tyranny and an empire in cyber-space.
Knowing Mr Turing ‘s standards , the world suffered when he was cut down in his prime by pressures brought by official governmental machinery after they had used him through for their own ends.
Watch it and admire the father of Computer Science.
What is common between somebody hacking a movie studio to stop the release of a critical movie and somebody killing some cartoonists in Paris. Both are examples of terrorism (one digital, the other physical)
Both deny your freedom to laugh at silly stuff.
This is the same reason I deplore denial of service attacks on websites that are critical to your ideas ( with the possible exception of paedophiles). Terror recruiting websites should be monitored by analytics not shut down by attacks.
The difference between the good guys and the bad guys is not just the reasons they do nasty stuff, it is also in their methods.
The internet needs more freedom not more regulation. Attempts to do so shall just cause activists to create technology that bypass future web anaytics in a more damaging way that current Tor projects do.
Creation of browsers that have both bit torrents and tor embedded by default could be one such example.