Pages

Monday, 30 April 2018

Hot Wheels Podium Cars

My personal research about hot wheels podium cars

Hot wheels podium cars


Hot Wheels Podium - Open Blister (Fantasy Car)

Podium open blister (fantasy cars)


Hot Wheels - Slowest Cars Podium

Latest slowest hot wheels cars in podium

Slowest hot wheels cars in podium

Hot wheels Podium - Category Champ Under 55 gram Metal Base

Ini adalah log peribadi hot wheels yang naik podium


1st - Pit Crew
2nd -
3rd -
4th -

Thursday, 29 March 2018

Python Data Science Essentials

My new reference related to data sciences with Python language


Tuesday, 20 February 2018

How-to calculate present value of one future cash flow

Present Value of One Future Cash Flow

Assume that an estimate of RM1000 is expected to be received in one year with an annual discount rate of 12 percent. The equation, 
$$PV = {FV \over (1+R)^n}$$

where PV is the present value, FV is the future value, R is the discount rate, and n is the number of periods.

In Python, we calculate using the following :

>>> 1000 / (1+0.12)
892.8571428571428


Wednesday, 6 December 2017

Curated List Definition of Machine Learning

There are many good definition for Machine Learning available today.

Authors, lecturers, researchers, students and trainers need Machine Learning definition in their work (to be used in lecturing slides, journal papers, white papers, books, etc.). Below are my own curated list of machine learning definitions :


  1. Machine Learning is a field of study that looks at and constructs algorithms that can learn from and make predictions on experimental data. [Zinoviev, D., 2016. Data Science Essentials in Python]