Showing posts with label dealing. Show all posts
Showing posts with label dealing. Show all posts

Friday, March 9, 2012

Question on learning SQL

Hi, I am new to this forum. I have a question about learning SQL. I never really had much of a reason to learn anything dealing with server programs. I now would like to learn about SQL. Is there a program that anyone knows about that can help me learn?sql server 2005 developer edition was 45 USD on amazon last I checked. Microsoft has a free e-learning class for it on their web site. Books online which ships with the product is an excellant resource. The 2 new INSIDE SQL SERVER 2005 books come out on June 4 I believe...|||This should teach you enough to be dangerous:
http://www.w3schools.com/sql/default.asp|||Thank you both. I appreciate your help.|||Books online are very complete. If you have a minimal knowledge in database, you can learn it yourself without any problem (I did it).

After, some books are also goods (like "Inside SLQ Server").|||After, some books are also goods (like "Inside SLQ Server").
Yea,I too want to know,whats inside "SLQ" ;)|||Wow ! My fingers were a little bit mad ! :rolleyes:|||Wow ! My fingers were a little bit mad ! :rolleyes:Yeah, I've never had that happen, but I read about it in this book once!

-PatP

Wednesday, March 7, 2012

Question on dealing with missing values for training models

Hi, all,

Just really wonder what is the good idea to deal with missing values? Should we leave the missing values there in the traning data set ? Or replace it with other values?

What I am really concerned is that if we simply replace those missing values with other values, then how will it really affect the correctness of the training models?

I am looking forward to hearing from you for the above issue and it will be really great if we have any kind of best practices of dealing with this issue.

Thanks.

With best regards,

Yours sincerely,

I have the same question, what's the best practice to replace NULL values in the source data? Should they be left as NULL or replaced with some predetermined default value?|||

For most algorithms, NULL and NULL substituted with a value do not mean the same thing. NULL is usually ignored whereas a substituted NULL is a real state value. The correct modeling approach depends on your data. If NULL has some information in your scenario (e.g. NULL for State means customer from a different country), it's a good idea to sutstitute NULL with a default value before training. If however, NULL means absense of data and has no information, it should be left as is.

Hope this helps.

|||

Hi, Shuvro,

Thanks a lot. It's is quite clear to me now to have a clear idea on dealing with the Null values.

With best regards,

Yours sincerely,

Question on dealing with missing values for training models

Hi, all,

Just really wonder what is the good idea to deal with missing values? Should we leave the missing values there in the traning data set ? Or replace it with other values?

What I am really concerned is that if we simply replace those missing values with other values, then how will it really affect the correctness of the training models?

I am looking forward to hearing from you for the above issue and it will be really great if we have any kind of best practices of dealing with this issue.

Thanks.

With best regards,

Yours sincerely,

I have the same question, what's the best practice to replace NULL values in the source data? Should they be left as NULL or replaced with some predetermined default value?|||

For most algorithms, NULL and NULL substituted with a value do not mean the same thing. NULL is usually ignored whereas a substituted NULL is a real state value. The correct modeling approach depends on your data. If NULL has some information in your scenario (e.g. NULL for State means customer from a different country), it's a good idea to sutstitute NULL with a default value before training. If however, NULL means absense of data and has no information, it should be left as is.

Hope this helps.

|||

Hi, Shuvro,

Thanks a lot. It's is quite clear to me now to have a clear idea on dealing with the Null values.

With best regards,

Yours sincerely,