Recent posts

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...