Code Monkey home page Code Monkey logo

ex-05-feature-generation's Introduction

EX-05-Feature-Generation

AIM

To read the given data and perform Feature Generation process and save the data to a file.

Explanation

Feature Generation (also known as feature construction, feature extraction or feature engineering) is the process of transforming features into new features that better relate to the target.

ALGORITHM

STEP 1

Read the given Data

STEP 2

Clean the Data Set using Data Cleaning Process

STEP 3

Apply Feature Generation techniques to all the feature of the data set

STEP 4

Save the data to the file

CODE

import pandas as pd
df = pd.read_csv("Encoding Data.csv")
df
from sklearn.preprocessing import LabelEncoder, OrdinalEncoder
data = ["Red","Green","Blue"]
set = OrdinalEncoder(categories = [data])
set.fit_transform(df[["nom_0"]])
df["nom_1"] = set.fit_transform(df[["nom_0"]])
df
data = ["Cold","Warm","Hot"]
st = OrdinalEncoder(categories = [data])
st.fit_transform(df[["ord_2"]])
df["ord_1"] = st.fit_transform(df[["ord_2"]])
df
le = LabelEncoder()
df["sty"]=le.fit_transform(df[["ord_2"]])
df
pd.get_dummies(df,columns=["nom_0"])
df = pd.read_csv("data.csv")
from sklearn.preprocessing import LabelEncoder, OrdinalEncoder
data = ["Cold","Warm","Hot","Very Hot"]
set = OrdinalEncoder(categories = [data])
set.fit_transform(df[["Ord_1"]])
df["nom_1"] = set.fit_transform(df[["Ord_1"]])
df
pd.get_dummies(df,columns=["Ord_1"])

OUPUT

image image image image

RESULT

Thus, the given data is read and Feature Generation process is successfully performed and the data is successfully saved to a file.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.