Python is one of the most popular computer programming languages in the world. Find out how Python is used for data science in interview with Course Report. Read More ›
Working with dates and times in Python can lead to frustration, heartache, and, ironically, lost time – but it doesn’t have to! This brief demo introduces Delorean, a library constructed to make datetime manipulation in Python easier. Read More ›
The Gini coefficient is a good general-purpose measure of statistical dispersion. Long since popular in the field of economics, this metric can be leveraged much more broadly to explore data from nearly any discipline. The following post includes a thorough mathematical explanation of the Gini coefficient as well as a few non-standard use cases. Read More ›
Developing web scraping skills allows you to save time and to broaden your access to data. This tutorial covers web scraping with Python from the basics of HTML to the full scraping pipeline. Read More ›
spaCy provides an easy-to-use framework for getting started with NLP. This post covers the basics of spaCy and highlights its functionality on a small corpus of restaurant reviews.. Read More ›
Math puzzles provide great amusement for some people, but many others approach them with dread--especially during interviews. Such trepidation may be unwarranted, however, because a simple visual--like the ones illustrated in this post--could be all you need to find a solution. Read More ›
You can mine YouTube's massive content library for many different types of data. This post provides instructions for obtaining the videos themselves, the video transcripts, as well as YouTube search results. Read More ›
Object detection problems pose several unique obstacles beyond what is required for image classification. Five such challenges are reviewed in this post along with researchers' efforts to overcome these complications. Read More ›
This post covers the basics of object detection: what it is, various approaches to it, the measurements used to judge its results, along with a few important considerations of modern object detection. Read More ›
Matplotlib's default properties often yield unappealing plots that can be off-putting to many users. This post offers several simple ways to improve upon these defaults and help spruce up basic Matplotlib visualizations. Read More ›
The birthday problem is a classic probability question with a surprising result. In this post, we will solve this puzzler and extend the result by considering the answer for every planet in our solar system. Read More ›