Posts

Showing posts from August, 2020

helpfull urls

 Python: 1. learn python on kaggle Machine-learning: 1.A Data Science Framework: To Achieve 99% Accuracy | Kaggle Django: 1.django from scratch(documentation)

import and check version

test1 index import and check version 1. import and check version In [6]: import sys #access to system parameters https://docs.python.org/3/library/sys.html print ( "Python version: {} " . format ( sys . version )) import pandas as pd #collection of functions for data processing and analysis modeled after R dataframes with SQL like features print ( "pandas version: {} " . format ( pd . __version__ )) import matplotlib #collection of functions for scientific and publication-ready visualization print ( "matplotlib version: {} " . format ( matplotlib . __version__ )) import numpy as np #foundational package for scientific computing print ( "NumPy version: {} " . format ( np . __version__ )) import scipy as sp #collection of functions for scientific computing and advance mathematics print ( "SciPy version: {} " . ...