├── frequency.py
├── generate_opml.py
├── README.md
└── data-science.opml
/frequency.py:
--------------------------------------------------------------------------------
1 | # coding: utf-8
2 | from datetime import datetime, timedelta
3 | import feedparser
4 | import re
5 | import time
6 |
7 | readme = open('README.md').read()
8 | feeds = re.findall('\[\(RSS\)\] \((.*?)\)', readme)
9 |
10 | past_week = datetime.now() - timedelta(days=7)
11 | past_month = datetime.now() - timedelta(days=30)
12 |
13 | per_week = 0
14 | per_month = 0
15 |
16 | for url in feeds:
17 | data = feedparser.parse(url)
18 | for f in data.entries:
19 | try:
20 | dt = datetime.fromtimestamp(time.mktime(f.updated_parsed))
21 | except Exception as err:
22 | print(err, url)
23 | break
24 |
25 | if dt >= past_week:
26 | per_week += 1
27 |
28 | if dt >= past_month:
29 | per_month += 1
30 |
31 | print('Blog post frequency (roughly): {} per week / {} per month.'.format(per_week, per_month))
32 |
--------------------------------------------------------------------------------
/generate_opml.py:
--------------------------------------------------------------------------------
1 | import re
2 | import html
3 |
4 | xmlbody = """
5 |
6 |
7 |
8 | Data science blogs
9 |
10 |
11 |
12 | {items}
13 |
14 |
15 |
16 | """
17 | xmlitem = ''
19 |
20 | readme = open('README.md').read()
21 | blogs = re.findall('\* (.*?) http([s]{0,1})\:\/\/(.*?) \[\(RSS\)\] \((.*?)\)', readme)
22 |
23 | items = ''
24 | for blog in blogs:
25 | item = xmlitem.format(title=html.escape(blog[0].strip()),
26 | httpfeed='http{0}://{1}'.format(blog[1].strip(), blog[2].strip()),
27 | rssfeed=blog[3].strip())
28 | items += '\t\t\t{}\r\n'.format(item)
29 |
30 | open('data-science.opml', 'w').write(xmlbody.format(items=items[0:-2]))
31 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Data science blogs
2 | A curated list of data science blogs
3 | * A Blog From a Human-engineer-being http://www.erogol.com/ [(RSS)] (http://www.erogol.com/feed/)
4 | * Aakash Japi http://aakashjapi.com/ [(RSS)] (http://logicx24.github.io/feed.xml)
5 | * Advanced Analytics & R http://advanceddataanalytics.net/ [(RSS)] (http://advanceddataanalytics.net/feed/)
6 | * Adventures in Data Land http://blog.smola.org [(RSS)] (http://blog.smola.org/rss)
7 | * Agile Data Science http://blog.sense.io/ [(RSS)] (http://blog.sense.io/rss/)
8 | * Ahmed El Deeb https://medium.com/@D33B [(RSS)] (https://medium.com/feed/@D33B)
9 | * Airbnb Data blog http://nerds.airbnb.com/data/ [(RSS)] (http://nerds.airbnb.com/feed/)
10 | * Alex Castrouni https://medium.com/@innoarchitech [(RSS)] (https://medium.com/feed/@innoarchitech)
11 | * Alex Perrier http://alexperrier.github.io/ [(RSS)] (http://alexperrier.github.io/feed.xml)
12 | * Analytics Vidhya http://www.analyticsvidhya.com/blog/ [(RSS)] (http://feeds.feedburner.com/AnalyticsVidhya)
13 | * Analyzing Life | Data Analytics Tutorials & Experiments for Layman https://annalyzin.wordpress.com/ [(RSS)] (https://annalyzin.wordpress.com/feed/)
14 | * Andreas Müller http://peekaboo-vision.blogspot.com/ [(RSS)] (http://peekaboo-vision.blogspot.com/atom.xml)
15 | * Andrej Karpathy blog http://karpathy.github.io/ [(RSS)] (http://karpathy.github.io/feed.xml)
16 | * Andrey Kurenkov http://www.andreykurenkov.com/ [(RSS)] (http://www.andreykurenkov.com/writing/feed.xml/)
17 | * Anton Lebedevich's Blog http://mabrek.github.io/ [(RSS)] (http://mabrek.github.io/feed.xml)
18 | * Avi Singh http://avisingh599.github.io/blog/ [(RSS)] (http://avisingh599.github.io/feed.xml)
19 | * Beautiful Data http://beautifuldata.net/ [(RSS)] (http://beautifuldata.net/feed/)
20 | * Beckerfuffle http://mdbecker.github.io/ [(RSS)] (http://mdbecker.github.io/atom.xml)
21 | * Becoming A Data Scientist http://www.becomingadatascientist.com/ [(RSS)] (http://www.becomingadatascientist.com/feed/)
22 | * Big-Ish Data http://bigishdata.com/ [(RSS)] (http://bigishdata.com/feed/)
23 | * blog += 1 http://snippyhollow.github.io/ [(RSS)] (http://snippyhollow.github.io/atom.xml)
24 | * Blog on neural networks http://yerevann.github.io/atom.xml [(RSS)] (http://yerevann.github.io/atom.xml)
25 | * blogR | R tips and tricks from a scientist https://drsimonj.svbtle.com/ [(RSS)] (https://drsimonj.svbtle.com/)
26 | * Brain of mat kelcey http://matpalm.com/blog/ [(RSS)] (http://matpalm.com/blog/feed)
27 | * Bugra Akyildiz http://bugra.github.io/ [(RSS)] (http://bugra.github.io/feeds/all.atom.xml)
28 | * Carl Shan http://carlshan.com/ [(RSS)] (http://feeds.feedburner.com/carlshan)
29 | * Chris Stucchio https://www.chrisstucchio.com/blog/index.html [(RSS)] (http://www.chrisstucchio.com/blog/atom.xml)
30 | * Christophe Bourguignat https://medium.com/@chris_bour [(RSS)] (https://medium.com/feed/@chris_bour)
31 | * Christopher Nguyen https://medium.com/@ctn [(RSS)] (https://medium.com/feed/@ctn)
32 | * Cloudera Data Science Posts http://blog.cloudera.com/blog/category/data-science/ [(RSS)] (http://blog.cloudera.com/blog/category/data-science/feed/)
33 | * colah's blog http://colah.github.io/archive.html [(RSS)] (http://colah.github.io/rss.xml)
34 | * Connect with Data Science http://www.datasciencebowl.com/connect-with-data-science/ [(RSS)] (http://www.datasciencebowl.com/feed/)
35 | * Daniel Forsyth http://www.danielforsyth.me/ [(RSS)] (http://www.danielforsyth.me/rss/)
36 | * Daniel Homola http://danielhomola.com/category/blog/ [(RSS)] (http://danielhomola.com/feed/)
37 | * Daniel Nee http://danielnee.com [(RSS)] (http://danielnee.com/?feed=rss2)
38 | * Data Based Inventions http://datalab.lu/ [(RSS)] (http://datalab.lu/atom.xml)
39 | * Data Labs http://blog.insightdatalabs.com/ [(RSS)] (http://blog.insightdatalabs.com/rss/)
40 | * Data Miners Blog http://blog.data-miners.com/ [(RSS)] (http://blog.data-miners.com/feeds/posts/default?alt=rss)
41 | * Data Mining Research http://www.dataminingblog.com/ [(RSS)] (http://feeds.feedburner.com/dataminingblog)
42 | * Data Mining: Text Mining, Visualization and Social Media http://datamining.typepad.com/data_mining/ [(RSS)] (http://datamining.typepad.com/data_mining/atom.xml)
43 | * Data Piques http://blog.ethanrosenthal.com/ [(RSS)] (http://blog.ethanrosenthal.com/atom.xml)
44 | * Data School http://www.dataschool.io/ [(RSS)] (http://www.dataschool.io/rss/)
45 | * Data Science 101 http://101.datascience.community/ [(RSS)] (http://101.datascience.community/feed/)
46 | * Data Science @ Facebook https://research.facebook.com/blog/datascience/ [(RSS)] (https://research.facebook.com/blog/rss)
47 | * Data Science Tutorials https://codementor.io/data-science/tutorial [(RSS)] (https://www.codementor.io/data-science/tutorial/feed)
48 | * Data Science Vademecum http://datasciencevademecum.wordpress.com/ [(RSS)] (http://datasciencevademecum.wordpress.com/feed/)
49 | * Dataaspirant http://dataaspirant.com/ [(RSS)] (http://dataaspirant.wordpress.com/feed/)
50 | * Dataclysm http://blog.okcupid.com/ [(RSS)] (http://blog.okcupid.com/index.php/feed/)
51 | * DataGenetics http://datagenetics.com/blog.html [(RSS)] (http://datagenetics.com/feed/rss.xml)
52 | * Dataiku https://www.dataiku.com/blog/ [(RSS)] (http://www.dataiku.com/feed.xml)
53 | * DataKind http://www.datakind.org/blog [(RSS)] (http://feeds.feedburner.com/DataKin)
54 | * DataLook http://blog.datalook.io/ [(RSS)] (http://blog.datalook.io/feed/)
55 | * Datanice https://datanice.wordpress.com/ [(RSS)] (https://datanice.wordpress.com/feed/)
56 | * Dataquest Blog https://www.dataquest.io/blog/ [(RSS)] (https://www.dataquest.io/blog/atom.xml)
57 | * DataRobot http://www.datarobot.com/blog/ [(RSS)] (http://www.datarobot.com/feed/)
58 | * Datascope http://datascopeanalytics.com/blog [(RSS)] (http://datascopeanalytics.com/rss)
59 | * DatasFrame http://tomaugspurger.github.io/ [(RSS)] (http://tomaugspurger.github.io/feeds/all.rss.xml)
60 | * Dato Blog http://blog.dato.com/ [(RSS)] (http://blog.dato.com/rss.xml)
61 | * David Mimno http://www.mimno.org/ [(RSS)] (http://mimno.infosci.cornell.edu/b/feed.xml)
62 | * Dayne Batten http://daynebatten.com [(RSS)] (http://daynebatten.com/feed/)
63 | * Deep Learning http://deeplearning.net/feed/ [(RSS)] (http://deeplearning.net/feed/)
64 | * Deep Learning https://timdettmers.wordpress.com/ [(RSS)] (http://timdettmers.wordpress.com/feed/)
65 | * Deepdish http://deepdish.io/ [(RSS)] (http://deepdish.io/atom.xml)
66 | * Delip Rao http://deliprao.com/ [(RSS)] (http://deliprao.com/feed)
67 | * DENNY'S BLOG http://blog.dennybritz.com/ [(RSS)] (http://blog.dennybritz.com/feed/)
68 | * District Data Labs http://districtdatalabs.silvrback.com/ [(RSS)] (https://districtdatalabs.silvrback.com/feed)
69 | * Diving into data https://blog.datadive.net/ [(RSS)] (http://blog.datadive.net/feed/)
70 | * Domino Data Lab's blog http://blog.dominodatalab.com/ [(RSS)] (http://blog.dominodatalab.com/rss/)
71 | * Dr. Randal S. Olson http://www.randalolson.com/blog/ [(RSS)] (http://www.randalolson.com/feed/)
72 | * Drew Conway https://medium.com/@drewconway [(RSS)] (https://medium.com/feed/@drewconway)
73 | * Dustin Tran http://dustintran.com/blog/ [(RSS)] (http://dustintran.com/blog/rss/)
74 | * Eder Santana https://edersantana.github.io/blog.html [(RSS)] (http://edersantana.github.io/feed.xml)
75 | * Edwin Chen http://blog.echen.me [(RSS)] (http://blog.echen.me/feeds/all.rss.xml)
76 | * EFavDB http://efavdb.com/ [(RSS)] (http://efavdb.com/feed/)
77 | * Emilio Ferrara, Ph.D. http://www.emilio.ferrara.name/ [(RSS)] (http://www.emilio.ferrara.name/feed/)
78 | * Entrepreneurial Geekiness http://ianozsvald.com/ [(RSS)] (http://ianozsvald.com/feed/)
79 | * Eric Jonas http://ericjonas.com/archives.html [(RSS)] (http://ericjonas.com/archives.html)
80 | * Eric Siegel http://www.predictiveanalyticsworld.com/blog [(RSS)] (http://feeds.feedburner.com/predictiveanalyticsworld/GXRy)
81 | * Erik Bern http://erikbern.com [(RSS)] (http://erikbern.com/feed/)
82 | * ERIN SHELLMAN http://www.erinshellman.com/ [(RSS)] (http://www.erinshellman.com/feed/)
83 | * Fabian Pedregosa http://fa.bianp.net/ [(RSS)] (http://fa.bianp.net/blog/feed/)
84 | * Fast Forward Labs http://blog.fastforwardlabs.com/ [(RSS)] (http://blog.fastforwardlabs.com/rss)
85 | * FastML http://fastml.com/ [(RSS)] (http://fastml.com/atom.xml)
86 | * Florian Hartl http://florianhartl.com/ [(RSS)] (http://florianhartl.com/feed/)
87 | * Full Stack ML http://fullstackml.com/ [(RSS)] (http://fullstackml.com/feed/)
88 | * GAB41 http://www.lab41.org/gab41/ [(RSS)] (http://www.lab41.org/feed/)
89 | * Garbled Notes http://www.chioka.in/ [(RSS)] (http://www.chioka.in/feed/)
90 | * Greg Reda http://www.gregreda.com/blog/ [(RSS)] (http://www.gregreda.com/feeds/all.atom.xml)
91 | * Hyon S Chu https://medium.com/@adailyventure [(RSS)] (https://medium.com/feed/@adailyventure)
92 | * i am trask http://iamtrask.github.io/ [(RSS)] (http://iamtrask.github.io/feed.xml)
93 | * I Quant NY http://iquantny.tumblr.com/ [(RSS)] (http://iquantny.tumblr.com/rss)
94 | * iDiBON http://idibon.com/blog/ [(RSS)] (http://idibon.com/blog/rss)
95 | * inFERENCe http://www.inference.vc/ [(RSS)] (http://www.inference.vc/rss/)
96 | * INSPIRATION INFORMATION http://myinspirationinformation.com/ [(RSS)] (http://myinspirationinformation.com/feed/)
97 | * Ira Korshunova http://irakorshunova.github.io/ [(RSS)] (http://irakorshunova.github.io/feed.xml)
98 | * I’m a bandit https://blogs.princeton.edu/imabandit/ [(RSS)] (https://blogs.princeton.edu/imabandit/feed/)
99 | * Jason Toy http://www.jtoy.net/ [(RSS)] (http://jtoy.net/atom.xml)
100 | * Jeremy D. Jackson, PhD http://www.jeremydjacksonphd.com/ [(RSS)] (http://www.jeremydjacksonphd.com/?feed=rss2)
101 | * Jesse Steinweg-Woods https://jessesw.com/ [(RSS)] (https://jessesw.com/feed.xml)
102 | * Joe Cauteruccio http://www.joecjr.com/ [(RSS)] (http://www.joecjr.com/feed/)
103 | * John Myles White http://www.johnmyleswhite.com/ [(RSS)] (http://www.johnmyleswhite.com/feed/)
104 | * John's Soapbox http://joschu.github.io/ [(RSS)] (http://joschu.github.io/feed.xml)
105 | * Jonas Degrave http://317070.github.io/ [(RSS)] (http://317070.github.io/feed.xml)
106 | * Joy Of Data http://www.joyofdata.de/blog/ [(RSS)] (http://www.joyofdata.de/blog/feed/)
107 | * Julia Evans http://jvns.ca/ [(RSS)] (http://jvns.ca/atom.xml)
108 | * KDnuggets http://www.kdnuggets.com/ [(RSS)] (http://feeds.feedburner.com/kdnuggets-data-mining-analytics)
109 | * Keeping Up With The Latest Techniques http://colinpriest.com/ [(RSS)] (http://colinpriest.com/feed/)
110 | * Kenny Bastani http://www.kennybastani.com/ [(RSS)] (http://www.kennybastani.com/feeds/posts/default?alt=rss)
111 | * Kevin Davenport http://kldavenport.com/ [(RSS)] (http://kldavenport.com/feed/)
112 | * korbonits | Math ∩ Data http://korbonits.github.io/ [(RSS)] (http://korbonits.github.io/feed.xml)
113 | * Large Scale Machine Learning http://bickson.blogspot.com/ [(RSS)] (http://bickson.blogspot.com/feeds/posts/default)
114 | * LATERAL BLOG https://blog.lateral.io/ [(RSS)] (https://blog.lateral.io/feed/)
115 | * Lazy Programmer http://lazyprogrammer.me/ [(RSS)] (http://lazyprogrammer.me/feed/)
116 | * Learn Analytics Here https://learnanalyticshere.wordpress.com/ [(RSS)] (https://learnanalyticshere.wordpress.com/feed/)
117 | * LearnDataSci https://learndatasci.com/ [(RSS)] (http://www.learndatasci.com/feed/)
118 | * Learning With Data http://learningwithdata.com/ [(RSS)] (http://learningwithdata.com/rss_feed.xml)
119 | * Life, Language, Learning http://daoudclarke.github.io/ [(RSS)] (http://daoudclarke.github.io/atom.xml)
120 | * Louis Dorard http://www.louisdorard.com/blog/ [(RSS)] (http://www.louisdorard.com/blog?format=rss)
121 | * M.E.Driscoll http://medriscoll.com/ [(RSS)] (http://medriscoll.com/rss)
122 | * Machinalis http://www.machinalis.com/blog [(RSS)] (http://www.machinalis.com/blog/feeds/rss/)
123 | * Machine Learning https://charlesmartin14.wordpress.com/ [(RSS)] (http://charlesmartin14.wordpress.com/feed/)
124 | * Machine Learning (Theory) http://hunch.net/ [(RSS)] (http://hunch.net/?feed=rss2)
125 | * Machine Learning and Data Science http://alexhwoods.com/ [(RSS)] (http://alexhwoods.com/feed/)
126 | * Machine Learning Mastery http://machinelearningmastery.com/blog/ [(RSS)] (http://machinelearningmastery.com/feed/)
127 | * Machine Learning, etc http://yaroslavvb.blogspot.com [(RSS)] (http://yaroslavvb.blogspot.com/feeds/posts/default)
128 | * Machine Learning, Maths and Physics https://mlopezm.wordpress.com/ [(RSS)] (https://mlopezm.wordpress.com/feed/)
129 | * Machined Learnings http://www.machinedlearnings.com/ [(RSS)] (http://www.machinedlearnings.com/feeds/posts/default)
130 | * MAPR Blog https://www.mapr.com/blog [(RSS)] (https://www.mapr.com/bigdata.xml)
131 | * MAREK REI http://www.marekrei.com/blog/ [(RSS)] (http://www.marekrei.com/blog/feed/)
132 | * MARGINALLY INTERESTING http://blog.mikiobraun.de/ [(RSS)] (http://feeds.feedburner.com/MarginallyInteresting)
133 | * Math ∩ Programming http://jeremykun.com/ [(RSS)] (http://jeremykun.wordpress.com/feed/)
134 | * Matthew Rocklin http://matthewrocklin.com/blog/ [(RSS)] (http://matthewrocklin.com/blog/atom.xml)
135 | * Melody Wolk http://melodywolk.com/projects/ [(RSS)] (http://melodywolk.com/feed/)
136 | * Mic Farris http://www.micfarris.com/ [(RSS)] (http://www.micfarris.com/feed/)
137 | * Mike Tyka http://mtyka.github.io/ [(RSS)] (http://mtyka.github.io//feed.xml)
138 | * minimaxir | Max Woolf's Blog http://minimaxir.com/ [(RSS)] (http://minimaxir.com/rss.xml)
139 | * Mirror Image https://mirror2image.wordpress.com/ [(RSS)] (http://mirror2image.wordpress.com/feed/)
140 | * Mitch Crowe http://www.dataphoric.com/ [(RSS)] (http://www.dataphoric.com/feed.xml)
141 | * MLWave http://mlwave.com/ [(RSS)] (http://mlwave.com/feed/)
142 | * Models are illuminating and wrong https://peadarcoyle.wordpress.com/ [(RSS)] (http://peadarcoyle.wordpress.com/feed/)
143 | * My thoughts on Data science, predictive analytics, Python http://shahramabyari.com/ [(RSS)] (http://shahramabyari.com/feed/)
144 | * Neil Lawrence http://inverseprobability.com/blog.html [(RSS)] (http://inverseprobability.com/rss.xml)
145 | * no free hunch http://blog.kaggle.com/ [(RSS)] (http://blog.kaggle.com/feed/)
146 | * Nuit Blanche http://nuit-blanche.blogspot.com/ [(RSS)] (http://nuit-blanche.blogspot.com/feeds/posts/default)
147 | * Number 2147483647 https://no2147483647.wordpress.com/ [(RSS)] (http://no2147483647.wordpress.com/feed/)
148 | * On Machine Intelligence https://aimatters.wordpress.com/ [(RSS)] (https://aimatters.wordpress.com/feed/)
149 | * Opiate for the masses Data is our religion. http://opiateforthemass.es/ [(RSS)] (http://opiateforthemass.es/feed.xml)
150 | * p-value.info http://www.p-value.info/ [(RSS)] (http://www.p-value.info/feeds/posts/default)
151 | * Pete Warden's blog http://petewarden.com/ [(RSS)] (http://feeds.feedburner.com/typepad/petewarden)
152 | * Plotly Blog http://blog.plot.ly/ [(RSS)] (http://blog.plot.ly/rss)
153 | * Probably Overthinking It http://allendowney.blogspot.ca/ [(RSS)] (http://allendowney.blogspot.com/feeds/posts/default)
154 | * Prooffreader.com http://www.prooffreader.com [(RSS)] (http://www.prooffreader.com/feeds/posts/default)
155 | * ProoffreaderPlus http://prooffreaderplus.blogspot.ca/ [(RSS)] (http://prooffreaderplus.blogspot.ca/feeds/posts/default)
156 | * Publishable Stuff http://www.sumsar.net/ [(RSS)] (http://www.sumsar.net/atom.xml)
157 | * PyImageSearch http://www.pyimagesearch.com/ [(RSS)] (http://feeds.feedburner.com/Pyimagesearch)
158 | * Pythonic Perambulations https://jakevdp.github.io/ [(RSS)] (http://jakevdp.github.com/atom.xml)
159 | * R and Data Mining https://rdatamining.wordpress.com/ [(RSS)] (http://rdatamining.wordpress.com/feed/)
160 | * R-bloggers http://www.r-bloggers.com/ [(RSS)] (http://feeds.feedburner.com/RBloggers)
161 | * Ramiro Gómez http://ramiro.org/notebooks/ [(RSS)] (http://ramiro.org/notebook/rss.xml)
162 | * Randy Zwitch http://randyzwitch.com/category/data-science/ [(RSS)] (http://randyzwitch.com/category/data-science/feed/)
163 | * RaRe Technologies http://rare-technologies.com/blog/ [(RSS)] (http://rare-technologies.com/feed/)
164 | * Rayli.Net http://rayli.net/blog/ [(RSS)] (http://rayli.net/blog/feed/)
165 | * Revolutions http://blog.revolutionanalytics.com/ [(RSS)] (http://blog.revolutionanalytics.com/atom.xml)
166 | * Rinu Boney http://rinuboney.github.io/ [(RSS)] (http://rinuboney.github.io/feed.xml)
167 | * RNDuja Blog http://rnduja.github.io/ [(RSS)] (http://rnduja.github.io/feed.xml)
168 | * Robert Chang https://medium.com/@rchang [(RSS)] (https://medium.com/feed/@rchang)
169 | * Rocket-Powered Data Science http://rocketdatascience.org [(RSS)] (http://rocketdatascience.org/?feed=rss2)
170 | * Sachin Joglekar's blog https://codesachin.wordpress.com/ [(RSS)] (https://codesachin.wordpress.com/feed/)
171 | * samim https://medium.com/@samim [(RSS)] (https://medium.com/feed/@samim)
172 | * Sean J. Taylor http://seanjtaylor.com/ [(RSS)] (http://seanjtaylor.com/rss)
173 | * Sebastian Raschka http://sebastianraschka.com/articles.html [(RSS)] (http://sebastianraschka.com/rss_feed.xml)
174 | * Sebastian Ruder http://sebastianruder.com/ [(RSS)] (http://sebastianruder.com/rss/)
175 | * Sebastian's slow blog http://www.nowozin.net/sebastian/blog/ [(RSS)] (http://www.nowozin.net/sebastian/blog/feeds/all.atom.xml)
176 | * Shakir's Machine Learning Blog http://blog.shakirm.com/ [(RSS)] (http://blog.shakirm.com/feed/)
177 | * Simply Statistics http://simplystatistics.org [(RSS)] (http://simplystatistics.org/feed/)
178 | * Startup.ML Blog http://startup.ml/blog [(RSS)] (http://www.startup.ml/blog?format=RSS)
179 | * Stigler Diet http://stiglerdiet.com/ [(RSS)] (http://stiglerdiet.com/feeds/all.atom.xml)
180 | * Stitch Fix Tech Blog http://multithreaded.stitchfix.com/blog/ [(RSS)] (http://multithreaded.stitchfix.com/feed.xml)
181 | * Storytelling with Statistics on Quora http://datastories.quora.com/ [(RSS)] (http://datastories.quora.com/rss)
182 | * StreamHacker http://streamhacker.com/ [(RSS)] (http://feeds.feedburner.com/StreamHacker)
183 | * Subconscious Musings http://blogs.sas.com/content/subconsciousmusings/ [(RSS)] (http://feeds.feedburner.com/advanalytics)
184 | * Swan Intelligence http://swanintelligence.com/ [(RSS)] (http://swanintelligence.com/feeds/all.rss.xml)
185 | * TechNet http://blogs.technet.com/b/machinelearning/default.aspx [(RSS)] (http://blogs.technet.com/b/machinelearning/rss.aspx)
186 | * TechnoCalifornia http://technocalifornia.blogspot.se/ [(RSS)] (http://technocalifornia.blogspot.com/feeds/posts/default)
187 | * TEXT ANALYSIS BLOG | AYLIEN http://blog.aylien.com/ [(RSS)] (http://blog.aylien.com/rss)
188 | * The Angry Statistician http://angrystatistician.blogspot.com/ [(RSS)] (http://angrystatistician.blogspot.com/feeds/posts/default)
189 | * The Clever Machine https://theclevermachine.wordpress.com/ [(RSS)] (http://theclevermachine.wordpress.com/feed/)
190 | * The Data Camp Blog http://blog.datacamp.com [(RSS)] (http://blog.datacamp.com/feed/)
191 | * The Data Incubator http://blog.thedataincubator.com/ [(RSS)] (http://blog.thedataincubator.com/feed/)
192 | * The Data Science Lab https://datasciencelab.wordpress.com/ [(RSS)] (http://datasciencelab.wordpress.com/feed/)
193 | * THE ETZ-FILES http://alexanderetz.com/ [(RSS)] (http://nicebrain.wordpress.com/feed/)
194 | * The Science of Data http://www.martingoodson.com [(RSS)] (http://www.martingoodson.com/rss/)
195 | * The Shape of Data https://shapeofdata.wordpress.com [(RSS)] (https://shapeofdata.wordpress.com/feed/)
196 | * The unofficial Google data science Blog http://www.unofficialgoogledatascience.com/ [(RSS)] (http://www.unofficialgoogledatascience.com/feeds/posts/default)
197 | * Tombone's Computer Vision Blog http://www.computervisionblog.com/ [(RSS)] (http://www.computervisionblog.com/feeds/posts/default)
198 | * Trevor Stephens http://trevorstephens.com/ [(RSS)] (http://trevorstephens.com/rss)
199 | * Trey Causey http://treycausey.com/ [(RSS)] (http://treycausey.com/feeds/all.atom.xml)
200 | * UW Data Science Blog http://datasciencedegree.wisconsin.edu/blog/ [(RSS)] (http://datasciencedegree.wisconsin.edu/feed/)
201 | * Wellecks http://wellecks.wordpress.com/ [(RSS)] (http://wellecks.wordpress.com/feed/)
202 | * Wes McKinney http://blog.wesmckinney.com/ [(RSS)] (http://wesmckinney.com/blog/feed/)
203 | * While My MCMC Gently Samples http://twiecki.github.io/ [(RSS)] (http://twiecki.github.io/atom.xml)
204 | * WildML http://www.wildml.com/ [(RSS)] (http://www.wildml.com/feed/)
205 | * Will do stuff for stuff http://rinzewind.org/blog-en [(RSS)] (http://rinzewind.org/feed-en)
206 | * WILL'S NOISE http://www.willmcginnis.com/ [(RSS)] (http://www.willmcginnis.com/feed/)
207 | * William Lyon http://www.lyonwj.com/ [(RSS)] (http://www.lyonwj.com/atom.xml)
208 | * Win-Vector Blog http://www.win-vector.com/blog/ [(RSS)] (www.win-vector.com/blog/feed/)
209 | * Yanir Seroussi http://yanirseroussi.com/ [(RSS)] (http://yanirseroussi.com/feed/)
210 | * Zac Stewart http://zacstewart.com/ [(RSS)] (http://zacstewart.com/feed.xml)
211 | * ŷhat http://blog.yhathq.com/ [(RSS)] (http://blog.yhathq.com/rss.xml)
212 | * ℚuantitative √ourney http://outlace.com/ [(RSS)] (http://outlace.com/feed.xml)
213 | * 大トロ http://blog.otoro.net/ [(RSS)] (http://blog.otoro.net/feed/)
214 | * Andrew Brooks http://brooksandrew.github.io/simpleblog/ [(RSS)] (http://brooksandrew.github.io/simpleblog/feed.xml)
215 | * Mourad Mourafiq http://mourafiq.com/ [(RSS)] (http://mourafiq.com/atom.xml)
216 | * Building Babylon https://building-babylon.net/ [(RSS)] (http://building-babylon.net/feed/)
217 | * Travel By The Numbers http://travelbythenumbers.com/ [(RSS)] (http://travelbythenumbers.com/feed/)
218 | * _ET) Z) Q) http://benjaminbolte.com/blog/ [(RSS)] (http://benjaminbolte.com/blog/)
219 | * Ben Frederickson http://www.benfrederickson.com/blog/ [(RSS)] (http://www.benfrederickson.com/atom.xml)
220 | * Eugenio Culurciello http://culurciello.github.io/ [(RSS)] (http://culurciello.github.io/feed.xml)
221 | * Moonshots http://jxieeducation.com/ [(RSS)] (http://jxieeducation.com/feed.xml)
222 | * Random notes on Computer Science, Mathematics and Software Engineering http://barmaley-exe.github.io/ [(RSS)] (http://feeds.feedburner.com/barmaley-exe-blog-feed)
223 | * Blogistic RegressionAbout Projects http://d10genes.github.io/blog/ [(RSS)] (http://d10genes.github.io/blog/feed.xml)
224 | * R2RT http://r2rt.com/ [(RSS)] (http://r2rt.com/feeds/all.atom.xml)
225 | * Natural language processing blog http://nlpers.blogspot.fr/ [(RSS)] (http://nlpers.blogspot.com/feeds/posts/default)
226 | * NLP and Deep Learning enthusiast http://camron.xyz/ [(RSS)] (http://camron.xyz/index.php/feed/)
227 |
228 | # RSS
229 | You can import an [opml file] (./data-science.opml) to your favorite RSS reader.
230 | Also you can add [a feed] (http://dsguide.biz/reader/feeds/posts) where the list is always up to date.
231 |
232 | # Contributing
233 | Your contributions are always welcome!
234 |
--------------------------------------------------------------------------------
/data-science.opml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Data science blogs
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
--------------------------------------------------------------------------------