Visualizing Data Part - 1
Let's talk about features, how can they be visualized. Do you remember Cartesian plane we studied in our school days? Am pretty sure you do. A simple plane or space where we can represent our data. Consider a Cartesian plane having x axis and y axis .Now if we plot a data as (3,4) then we are aware that 3 is nothing but 3 units towards x axis from origin and 4 represents 4 units towards y axis from origin. And this point (3,4) is nothing but a scalar term so we used cartesian plane. But in ML we deal with features as a vectors so we need to know Vector Space. And if you know Cartesian Plane then Vector Space/Plane is simply the same but with high dimensions representations capability. Okay now that we are cleared with terminologies let's move forward. Consider that you have been given a task of classifying girls and boys on the basis of height of few students given to you . So we can intuitively say that girls have a somewhat shorter height th...