Andrei Iovan
Andrei Iovan

Reputation: 113

Selecting Columns in Microsoft Azure ML Studio Dataset alters the variable type

I'm trying to select some columns from a dataset in Microsoft Azure ML Studio. My dataset column is a decimal at first. enter image description here After I pass the data through a "Select Column in Dataset" asset, the same column becomes a string, instead of remaining decimal. enter image description here

Any idea why this is happening?

Upvotes: 1

Views: 735

Answers (1)

Abhishek Khandave
Abhishek Khandave

Reputation: 3230

Not able to find exact reason for why decimal datatype is changing to string data type after Select Columns.

As per this answer by akashperfect to similar type of question, Check if there are any NULL values. There couldn't be NULL values in your column. First clear the missing data and perform edit metadata step.

enter image description here

If this does not resolve your issue, then you can Create a support ticket here

Upvotes: 1

Related Questions