Similar Posts
Mean Squared Error – Simple Definition, Explanation and Illustration
Having started my journey in Data Science. I came across Mean Squared Error several times and realised how important that concept is. Then I started working on project and needed to really understand what Mean Squared Error is ? So what is Mean Squared Error ? Simply, let’s say you are building your model. And…
Add Action to AutoIt Message Box – Catching the Message Box Returned Value
Adding actions to messages boxes Message Boxes, like most functions, return one of these values and their respective meanings Button Pressed Return Values: OK = $IDOK (1) CANCEL = $IDCANCEL (2) ABORT = $IDABORT (3) RETRY = $IDRETRY (4) IGNORE = $IDIGNORE (5) YES = $IDYES (6) NO = $IDNO (7) CONTINUE ** = $IDCONTINUE (11) TRY…
MySQL – Summarizing Data – SUM COUNT -MIN -MAX – AVG – DOGNITION Database
Summarizing Data This week we are looking at five most common aggregate functions used to summarize information stored in tables: COUNT and SUM very frequently. COUNT is the only aggregate function that can work on any type of variable. The other four aggregate functions are only appropriate for numerical data. All aggregate functions require you…
Python List Comprehension Dictionary Set Comprehension and For Loops
This is a guide on Python List comprehension. List comprehension is a great way to write simple and easy to read Python codes. You can use it dictionaries and sets as well. Credits to Corey Schafer , creator of Python course materials. lets create a list In [115]: num = range(10) num Out[115]: [0, 1,…
Coursera Capstone Final Report – Data Analysis and Interpretation
I worked with a World Bank Dataset provided by the Course instructors. The research question was: Prediction of Adjusted Net National Income Per Capita of Countries Brief Introduction to the Research Question The purpose of this project was to identify the best predictors for Adjusted Net National Income Per Capita of countries from multiple World…
How To Power On The Python Idle – Python
I know this can be very simple and straightforward for most people, but hey, when i was beginning to program in Python, I did not know how to get the Python Idle running. Hence l cover that quickly here. It is assumed you have already downloaded and installed Python on your windows PC You can…