Data Science Posts

datascience

Analyzing Geo-data Using Folium

6 minute read

The goals of this project are : - Gather data specially [geo_location] of Malaysia public universities. - Use pandas to store data - Wrangling collected data...

datascience

Linear Regression from Scratch

7 minute read

In this post I have demonstrated how to generate data and build single linear regression as well as multiple linear regression model by using numpy, pyplot, ...

datascience

Pyplot - Data Visualization

5 minute read

matplotlib.pyplot is a collection of command style functions that make matplotlib work like MATLAB. Each pyplot function makes some change to a figure: e.g.,...

datascience

Pandas Dataframe

9 minute read

This post is about Pandas - Creating pandas dataframe, working with missing value and so on. The primary data structures in pandas are implemented as two cla...

datascience

NetworkX - Exploring Graph

4 minute read

NetworkX is a Python package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks. It has powerful data st...

datascience

ML Project - Dress Classifier

10 minute read

A simple project on dress classification with CNN, Keras. 2.0 Project Objectives - To observe students dress up among the IIUM community - To collect picture...

datascience

Numpy array

7 minute read

NumPy’s main object is the homogeneous multidimensional array. It is a table of elements (usually numbers), all of the same type, indexed by a tuple of posit...