Considero que Titanic Data Science Solutions es un tutorial bien explicado y completo contiene puntos desde la selección de características hasta la elección del algoritmo.
Links:
What is the difference between pip and pip3?
These commands help us sort a little, because if we have more than one instance of python installed, the handling becomes confusing. For example in Ubuntu 14.04 pip is linked with Python2 and pip3 with Python3 [1].
Links:
Links:
Obtener los valores del teclado con javascript key board value
Usando javascript podemos usar el siguiente código:
<!DOCTYPE html>
<html>
<body>
<p>Ingrese algún valor</p>
<input onkeypress="miFuncion(event)">
<p id="ejemplo"></p>
<script>
function miFuncion(e) {
var x = e.which || e.keyCode;
document.getElementById("ejemplo").innerHTML = "El valor es: " + x;
}
</script>
</body>
</html>
Suscribirse a:
Entradas (Atom)