Skip to content

Instantly share code, notes, and snippets.

@Padhma
Created July 9, 2021 18:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Padhma/d166609e3c1a1f1f164c0e898290667f to your computer and use it in GitHub Desktop.
Save Padhma/d166609e3c1a1f1f164c0e898290667f to your computer and use it in GitHub Desktop.
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
# read input data
github_data_df = pd.read_csv('../input/github-repositories-analysis/Github_data.csv')
# dropping duplicate columns
github_data_df = github_data_df.drop(['Unnamed: 0','Unnamed: 0.1'],axis=1)
# get basic information about the dataset
github_data_df.info()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment