How to mine newsfeed data and extract interactive insights in Python

In this tutorial we’ll dive in Topic Mining. We’ll analyze a dataset of newsfeed extracted from more than 60 sources. We’ll show how to process it, analyze it and extract visual clusters from it. We’ll be using great python tools for interactive visualiza… Read more

Similar

Python: default argument blunders

A few minutes ago a friend sent me the following code, and told me its misbehaving: def foo(l=[]): l.append("hello!") print(l) foo() foo() Instead of printing ["hello"] twice, it printed ["hello", "hello"]. Any ideas why? what's going on? I'll... (more…)

Read more »