How can I work with categorical variables in Neural Network Toolbox 6.0 (R2008a)?

Technical Source
2 min readJun 18, 2021

--

I want to use the NEWSOM neural network for clustering. My dataset contains both numerical and categorical variables; in the documentation, however, I can only find how to work with numerical variables.

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

The ability to work with categorical variables is not available in the Neural Network Toolbox. It is supported with the Statistics Toolbox.

To work around this issue, you need to represent your categories as numerical values. In general there are two approaches:

1. Represent each category as an integer. For example if you have categories ‘small’, ‘medium’ and ‘large’ you could say ‘small’ = 0, ‘medium’ = 1, ‘large’ = 2. Although in general this idea should work fine when you only have categorical variables, you may need to pay attention to scaling when you also have numerical variables. The idea is that a numeric change for one input of the net (for example integers representing one of your categorical variables) should have roughly the same importance as the same numeric change to another input (for example one of your numerical variables). There are several tools in the Neural Network Toolbox that help you scale your inputs, see the “Processing Functions” section in the Neural Network Toolbox documentation.

Normally start with MAPMINMAX if this does not perform well you could try MAPSTD or possibly PROCESSPCA. You can apply these functions manually, or you can apply them automatically to an input by setting the ‘processFcns’ property for the input.

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet