My Learning Space
​Space to take notes, learn and share.
Dictionary in Python
Python Dictionary A dictionary in Python is a data structure to store data in Key: value format. There are several similarities between python lists and dictionaries, however, they differ in how their elements are accessed. List elements are ordered and are accessed...
Loading Data from Kaggle to Amazon S3 Bucket
Loading data from kaggle directly into S3 is a two step process. In first step we configure Kaggle to be able to download. And in second step, we extract data from Kaggle into S3 bucket. Get data from Kaggle To get data from kaggle, we setup Kaggle command line tool...
Correlation Coefficient – Simplistic explanation
What is Correlation Coefficient Correlation means a mutual relationship or connection between two or more things (variables). The correlation coefficient is a numeric measure to quantify this relationship. The coefficient describes two aspects of a relationship....
Loading data in Snowflake
Any relational database for example ( MYSQL, POSTGRESQL)Â can only support structured data in the forms of rows and columns. Snowflake, however, can support multiple types of data loads. Concept of stages Internal Stages Snowflake has the following...
Snowflake Basic Operations
What is snowflake? Snowflake is a data warehouse platform that pitches the native cloud ( or cloud-first ) approach as its primary value proposition. let's learn about snowflake by going hands-on in few basic operations in snowflake. Creating Database in...
Regression Analysis
What is Regression Analysis Regression analysis is a process to find a relationship between two or more variables. A variable can represent data from any word, event, occurrence, phenomenon, etc. For example, say we want to find whether there’s any relationship...