Python
Last article written on
Sep 23, 2019
By
Mausam Gaurav
9 Articles tagged in Python

 

Article Sep 23, 2019
Article Author   Mausam Gaurav
Page Visits   13647
Machine Learning Data Science Python

To demonstrate the automated feature selection methods in Python we would use the diabetes dataset. Import the diabetes .csv file into a data-frame with Pandas as below:  

import pandas as pd
names = ['preg', 'plas', 'pres', 'skin', 'test', 'mass', 'pedi', 'age', 'class']
df_diabetes = pd.read_csv('diabetes.csv', names = names)
df_diabetes ...
Article Sep 22, 2019
Article Author   Mausam Gaurav
Page Visits   5139
Python
While the Anaconda installer for Windows is pretty useful, and comes with support for Jupyter notebooks pre-installed, you may end up with a number of python packages and other stuff which most likely you are not going to use for your project. It is always better to have a minimalist ...
Article Aug 25, 2019
Article Author   Mausam Gaurav
Page Visits   8583
Machine Learning Python

Prerequisites: You would need to have Jupyter Notebook installed. Python 3.7 and Pandas 0.25.1 were used for this post. You would also need the following packages:

  • plotly   pip install plotly==4.1.0
  • itertools (usually pre-installed with Python)

All the code used in this article, and the ...

First Previous 1 2 3