Here, are some areas we have been working. You shall get glimpses of its workings. For any future work, help, suggestions, you can write to us. This article covers topics on Soft Rough Sets and it’s applications in Text Analytics and Language Processing. The coding shall use Python as much as it can.
Category Archives: data science
Decision Tree using Python With Random Data
Import all required libraries — — — — — — — — — — — — — import pandas as pd from sklearn.model_selection import train_test_split from sklearn.tree import DecisionTreeClassifier from sklearn import tree import matplotlib.pyplot as plt import random import os — — — — — — — — — — — — — —Continue reading “Decision Tree using Python With Random Data”