Data Science
datapandasadmin

Natural Language Processing Machine Learning Algorithm Model Python – NLP

In this guide, we take a look at Natural Language Processing, NLP in Python. Natural Language is a very extensive topic and very powerful machine learning algorithm you can build. This is very useful in many areas of most industries. Credits to Jose Portilla, creator of Learning Python for Data Analysis and Visualization course   on Udemy  

Read More »
Data Science
datapandasadmin

Installing Talend Whilst Java 1.8 Is Already Installed on Windows 10 PC

I was installing Talend and I realised that Talend installation requires Java 1.7 or below but not any Java version above that. (as at the time of writing) The installation quit straight away, giving a notification that it requires Java 1.7 These are the steps I followed to get Talend installation to succeed. First I

Read More »
Data Science
datapandasadmin

Quick Link to Connect to Google Analytics Developer API

Hi Guys, My mentor and Godfather in IT,  Terry,  showed me a simple and quick link to connect to Google Analytics API.  Hope you also find it useful. Link is as below: https://ga-dev-tools.appspot.com/query-explorer/   To connect to your Google Analytics, Simply click on the link : https://ga-dev-tools.appspot.com/query-explorer/ Enter your login details for your Google Analytics account

Read More »

Pandas DataFrame and Series Alignment Python Notes

This week we have a look at Data Alignment in Python In [1]: import numpy as np import pandas as pd from pandas import Series, DataFrame   In [2]: #create series ser1 = Series([0,1,3], index=[‘A’,’B’,’C’]) ser1   Out[2]: A 0 B 1 C 3 dtype: int64 In [3]: ser2 = Series([3,4,5,6], index=[‘A’,’B’,’C’,’D’]) ser2   Out[3]: A 3 B

Read More »
Data Science
datapandasadmin

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

Read More »

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

Read More »