Posts

Showing posts from 2019

Learning Python using Pandas Library from scratch.

Image
Pandas is a panel data structure easy to use for data analysis using Python. Pandas have many methods which can be used to solve data science problems. The installation pandas is pretty much simple just use. pip install pandas If you are using a Google Colaboratory notebooks you don't have to manually install it, just import it, by doing so pandas would be automatically installed or called. Most of the examples were taken from the Pandas Tutorial  because this is the best tutorial on the planet which teaches pandas library from scratch. I have gone through this tutorial and come with the best and handy methods of pandas DataFrame that are necessary for solving problems. This also helps you to prepare for the technical interview, so it's more like a last minute preparation. Example 1: Object creation Example 2:  Creating a "Series" by passing a list of values, letting pandas create a default integer index: Example 3: Creating a...

Go programming language from scratch. (Module 1) - The Basics.

Today we would be learning about a new programming language called as "Go programming language" AKA "Go lang", Well, I  recommend you that it's not mandatory to learn this language, unless if you are a google lover like me, then its a must. Here is what you need to know, I'll be starting right from scratch from printing "Hello World," so you guys don't have to worry about having prior knowledge in this language, and I care a damm about it. You don't have to worry about installing the IDE or anything like that, don't worry its Google, everything is ready at your fingertips. Google has an IDE in the cloud called as the "The Go Playground" which you can find it here Go Playground , Well this is like a compiler or whatever, let's not bug our heads into it.  Less talk and more code. Module 1 Program 1: Write a program in Go lang to print "Hello World". package main import "fmt" func...

Was this Blog Helpful ?