How to import data into Python to run Machine Learning projects
One of the most important aspects of running any machine learning program is the ability to pull in data from various sources and of...
What is Conditional Probability and formula?
Conditional probability is used to find out the probability of some event happening given that some other event has happened. Easy right?
Therefore, conditional probability...
How to make the first row in your spreadsheet or dataframe the header in...
If you have imported a CSV file into your notebook and use Pandas to view the dataframe you might find that the header of...
Learn Project Management with Basecamp – Online
Become a Project Management Ninja. You can go from managing projects in your email to managing them in Basecamp-used by companies like NIKE, FOX,...
How to setup a WordPress Google sitemap plugin
I have quite a few Wordpress sites running Google XML Sitemaps. It works well and is pretty much hassle free. I've been running it...
How to: A simple Python Function example
Functions in Python can be simple or extraordinarily complex. This will teach you how to write a simple Python Function example. From there you...
What is probability mass function?
Probability mass function is recognized as a probability that is distributed over discrete variables.
First, probability mass function is always denoted with the capital P.
Second,...
Error: Cannot change working directory in R Studio
I had initially set it to be setwd(“Users/myname/datascience”)
make sure you have the initial / so it is this:
setwd("/Users/charliecraine/datascience")
another method is that under the Files...
How to merge data frames in R
You will find occasions when you'll need to merge data from two different data frames. In order to merge two datasets you are required...
How to drop columns in a pandas dataframe
Pandas is a great tool for working on any machine learning or data science project. It's a fundamental part of data wrangling. In this...