Statistics Concepts in Data-Science
Importing Libraries and Read Data
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
Read the Data and get the first rows of the DataFrame
data = pd.read_csv(‘files/weight-height.csv’)
Output
Count
The count is descriptive st...
amansinganamala.hashnode.dev3 min read