|
| View previous topic :: View next topic |
| Author |
Message |
Perter_Be
Joined: 02 Jun 2013 Posts: 2
|
Posted: Sun Jun 02, 2013 10:47 am Post subject: Question about data processing |
|
|
Hi guys,
I am writing a term paper where data mining is used to improve the security of a power grid and I have a question about data processing.
So various kinds of data is collected from a power grid like: Outages, transformer data, power quality, system loads etc.
This data is then processed for an machine learning application. And it is said that the following things are done with the collected data:
- Parse ans scale features
- Aggregation and binning
- Convert categorical to boolean features
I don't have the foggiest clue about what is menat "Convert categorical to boolean features". Could anyone of you imagine what this could mean. |
|
| Back to top |
|
 |
editor Site Admin
Joined: 04 Oct 2005 Posts: 120 Location: Boston, MA
|
Posted: Mon Jun 03, 2013 6:24 am Post subject: Converting categorical (nominal) features to boolean |
|
|
This conversion is standard when applying many types of machine learning algorithms like neural nets which cannot deal easily with nominal values.
For example, say you have a feature COLOR, and it can have values,
RED, GREEN, and BLUE. Then you would replace it with 3 new attributes:
COLOR_RED (if COLOR="RED" then 1 else 0),
COLOR_GREEN (if COLOR="GREEN" then 1 else 0),
COLOR_BLUE (if COLOR="BLUE" then 1 else 0) |
|
| Back to top |
|
 |
Perter_Be
Joined: 02 Jun 2013 Posts: 2
|
Posted: Wed Jun 05, 2013 3:13 pm Post subject: Further questions |
|
|
Thank you for your answer. But now I have 2 question with regard to you answer:
1) Why can many machine learning algorithms not deal with nominal values
2) If we use boolean valuse why do we have to Parse ans scale features |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|
|
|