Posts tagged 'python'

Adil Moujahid

In-Depth Analysis of Moonbirds NFTs using Python and Alchemy

Moonbirds is the official PFP NFT project of the Proof collective. It consists of 10,000 utility-enabled PFPs that unlock different benefits depending on the traits and the locking period of the Moonbird NFT. In this blog post, we will use Python and Alchemy to do a deep dive analysis of the collection in its first week of trading.

Adil Moujahid

Data mining Meebits NFTs using Python and OpenSea API

The Meebits NFT collection is the latest project from Larva Lab, the creator of Cryptopunks and Autoglyphs. In this tutorial, we will use Python and OpenSea API to download and analyze the transactions related to Meebits. We will cover how to download Meebits transactions using python and OpenSea API, and we will analyze the data with the goal of understanding sales trends and the behavior of some of the sellers and owners of Meebits.

Adil Moujahid

Analyzing Messi and Ronaldo's Games using Python and Streamlit

In this blog post, we will be using an open collection of football logs to create a web app that analyzes Messi and Ronaldo's game during LaLiga season 2017-18. We will be using Python/Jupyter notebooks to analyze the data and Python/Streamlit to create an interactive web app that compares both players stats and shows their positions on the pitch.

Adil Moujahid

An Implementation of Schelling Segregation Model using Python and Streamlit

In 1971, Thomas Schelling published a paper titled: Dynamic models of segregation. The paper introduced an agent-based model that helped studying segregation in multi-ethnics cities. The model showed that a high segregation level in cities doesn't necessarily translate into intolerance at the individual level. In this post, I will explain how to implement Schelling's segregation model using Python and Streamlit.

Adil Moujahid

Analyzing the Impact of Coronavirus on the Stock Market using Python, Google Sheets and Google Finance

Since its emergence in Asia late 2019, the coronavirus COVID-19 pandemic has been devastating. The virus spread to most countries causing severe respiratory infections and many human casualties. The virus also put half of the world population in lockdown which resulted in a slowdown of the world economy and a fall in stock prices. The goal of this tutorial is to introduce the steps for collecting and analyzing stock data in the context of the coronavirus pandemic.

Adil Moujahid

A Practical Introduction to Blockchain with Python

Blockchain is arguably one of the most significant and disruptive technologies that came into existence since the inception of the Internet. It's the core technology behind Bitcoin and other crypto-currencies that drew a lot of attention in the last few years. This blog post covers the core concepts behind blockchain and shows how to implement one using Python.

Adil Moujahid

Interactive Data Visualization of Geospatial Data using D3.js, DC.js, Leaflet.js and Python

In this tutorial, you will learn how to build an interactive data visualization using geospatial data. We will cover a wide range of technologies: Pandas for cleaning the data, Flask for building the server, Javascript libraries d3.js, dc.js and crossfilter.js for building the charts and Leaflet.js for building the map.

Adil Moujahid

A Practical Introduction to Deep Learning with Caffe and Python

The goal of this blog post is to give you a hands-on introduction to deep learning. To do this, we will build a Cat/Dog image classifier using a deep learning algorithm called convolutional neural network. This post is divided into 2 main parts. The first part covers some core concepts behind deep learning, while the second part is structured in a hands-on tutorial format. We will use some Python code and a popular open source deep learning framework called Caffe to build the classifier.

Adil Moujahid

Data Mining Coursera for Popular Courses with Python

In this tutorial, I will combine Coursera course catalogue together with social media data to assess the popularity of courses. To to this, I will use the Coursera API to retrieve the course catalogue, I will use the sharecount.com API to get social media metrics for each course, and I will use python's pandas library to query and order the courses by popularity. The technique introduced in this tutorial can be leveraged to other use cases that require a popularity ranking system for measuring the relevance of a list of links.

Adil Moujahid

Interactive Data Visualization with D3.js, DC.js, Python, and MongoDB

Step by step tutorial for building an interactive data visualization dashboard using a dataset from DonorsChoose.org. This tutorial introduces a range of technologies: MongoDB for storing and querying the data, Python for building a web server that interacts with MongoDB and serving html pages, Javascript libraries d3.js, dc.js and crossfilter.js for building interactive charts.

Adil Moujahid

An Introduction to Agent-based Models: Simulating Segregation with Python

In this post, I will explain about Schelling's segregation model, implement the same in Python programming language, and explain the power of agent based simulations for understanding complex phenomenon.

Adil Moujahid

An Introduction to Text Mining using Twitter Streaming API and Python

In this tutorial, I will use Twitter data to compare the popularity of 3 programming languages: Python, Javascript and Ruby, and to retrieve links to programming tutorials.

Adil Moujahid

Baseball Analytics: An Introduction to Sabermetrics using Python

Sabermetrics is the apllication of statistical analysis to baseball data in order to measure in-game activity. In this post, I will use Lahman’s Baseball Database and Python programming language to explain some of the techniques used in Sabermetrics.