Install all these three libaraies using the following commands:
pip install pandas
pip install numpy
pip install matplotlib --user
Now, open the Python interpreter and import each in your Python program as follows:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
Now start using each of them in your program as follows:
df = pd.read_csv('location path of the .csv file from which data has to be loaded')
No comments:
Post a Comment