Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><sub>My paint skills aren't the best!</sub><br> All I know is theory, so well you'll have to look for the code.. </p> <p>If you have only 1 case(The best for "x" situations) the diagram becomes something like (It won't be 2-D, but something like this):<br> <img src="https://i.stack.imgur.com/Bpwz8.png" alt="The 3 dots"><br> Green (Win), Orange(Draw), Red(Lose)</p> <p>Now if you want to predict whether the team wins, loses or draws, you have (at least) 2 models to classify:</p> <ol> <li><a href="http://en.wikipedia.org/wiki/Linear_regression" rel="nofollow noreferrer">Linear Regression</a>, the separator is the Perpendicular bisector of the line joining the 2 points:<br> <a href="http://en.wikipedia.org/wiki/Linear_regression" rel="nofollow noreferrer"> <img src="https://i.stack.imgur.com/2qX20.png" alt="Linear Regression"> </a></li> <li><a href="http://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm" rel="nofollow noreferrer">K-nearest-neighbours</a>: it is done just by calculating the distance from all the points, and classifying the point as the same as the closest..<br> <img src="https://i.stack.imgur.com/53wwL.png" alt="Something!!!"> </li> </ol> <p>So, for example, if you have a new data, and have to classify it, here's how:</p> <ol> <li>We have a new point, with certain attributes..<br> <img src="https://i.stack.imgur.com/r1WNT.png" alt="New Point"></li> <li>We classify it by seeing/calculating which side of the line the point comes in (or seeing how far it is from our benchmark situations...<br> <img src="https://i.stack.imgur.com/fcwiq.png" alt="Classified Point"></li> </ol> <blockquote> <p>Note: You will have to give some weightage to each factor, for more accuracy..</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload