re: python vs. R I haven't done python at all, but from reading bits and piece online, it seems to me that Python is a lot more about ML than Statistics. Also, how does one decide what is a "data scientist"? Is it only people who do Stats+ML+IT? What about a researcher in economics or biology? Or marketing. Are those included? They do a lot of Stats and increasingly a lot of ML. Not so much information technology tho…
You can take a look at this book Analyzing the Analyzers The Authors surveyed data scientists, asking about their experiences and how they viewed their own skills and careers.They answer your question what is a "data scientist" http://www.oreilly.com/data/free/files/analyzing-the-analyze...
Web Scraping Indeed for Key Data Science Job Skills
11–20 of 23 posts
Re: Web Scraping Indeed for Key Data Science Job Skills
#12It works by sampling job ads from Indeed, then applying some information extraction/retrieval/NLP algos to extract and weight the presence of identified skills and qualities. There's some occasional glitches in the algo (I need to fix some of the disambiguation data), but it usually gives reasonable results.
I was thinking of focusing the algorithm for giving really in-depth feedback on improving your resume specifically for a job. Now if only I could finish my PhD thesis I might actually have the time to do more with it...
Re: Web Scraping Indeed for Key Data Science Job Skills
#13Re: Web Scraping Indeed for Key Data Science Job Skills
#14re: python vs. R I haven't done python at all, but from reading bits and piece online, it seems to me that Python is a lot more about ML than Statistics. Also, how does one decide what is a "data scientist"? Is it only people who do Stats+ML+IT? What about a researcher in economics or biology? Or marketing. Are those included? They do a lot of Stats and increasingly a lot of ML. Not so much information technology tho…
It ranges (from the hiring side) from: "good if you know excel and you will report figures to management" to "please only apply if you have 2 Ph.Ds and 20 years of experience in C". So it is a bit wide...
the self-proclaimed "data scientists" probably goes from know a programming language/know visualising/know statistics up to "X Ph.Ds and Y years of experience where Y > 20"
Re: Web Scraping Indeed for Key Data Science Job Skills
#15Perhaps offtopic: Is web scraping a desired skill in the job market? Asking because unemployed.
Re: Web Scraping Indeed for Key Data Science Job Skills
#16I wish there was a system of web scrapers where the scraping logic is user-contributed and decentralized at the same time. Being decentralized, there would be no way for the owners of websites to stop anyone from scraping, and being user-maintained, the logic gets updated quickly whenever the original website's HTML template changes.
Do you envision that users would want to run such a system, e.g., if there was a public benefit to such information sharing?
What if the implementation was a group of small programs written in C that communicated with each other, and no browser extensions or scripting languages were required?
What if the system required attachment of dedicated hardware to the user's LAN, e.g., a $25 single board computer?
Re: Web Scraping Indeed for Key Data Science Job Skills
#17Re: Web Scraping Indeed for Key Data Science Job Skills
#18Re: Web Scraping Indeed for Key Data Science Job Skills
#19 for script in soup_obj(["script", "style"]):
script.extract() # Only need these two elements from the BS4 object
That comment is a bit misleading. soup.extract() will remove those tags from the tree, 'script' and 'style' are the two tags you __don't__ need.http://www.crummy.com/software/BeautifulSoup/bs4/doc/#extrac...
Re: Web Scraping Indeed for Key Data Science Job Skills
#20Perhaps offtopic: Is web scraping a desired skill in the job market? Asking because unemployed.