Similar Posts
Rank Sort Series DataFrames in Python Pandas Numpy
In this quick notes, we will have a look at Rank and Sort in Series and DataFrames in Python In [1]: import numpy as np import pandas as pd from pandas import Series, DataFrame In [3]: #make a series ser1 = Series(range(3), index=[‘C’,’A’,’B’]) ser1 Out[3]: C 0 A 1 B 2 dtype: int32 In [4]:…
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…
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…
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,…
GDPR- What Is It ? Why You Should Be Concerned And What Actions To Take
GDPR stands for General Data Protection Regulation (GDPR) also referred to as the EU General Data Protection Regulation (GDPR). According to the EUGDPR website , The EU General Data Protection Regulation (GDPR) is the most important change in data privacy regulation in 20 years. The EU General Data Protection Regulation (GDPR) replaces the Data Protection Directive 95/46/EC and was designed to harmonize…
Can the sample size be equal to the population size?
What is population size: In simple terms, let’s us say population is the WHOLE SET and What is sample size: let us say it is the SUBSET (which is within the whole set) The norm Normally subsets are within the whole set and are smaller than the whole set Can they be equal ? Yes…