Write a function species_count that returns the number of unique Pokemon species (determined by the name attribute) found in the dataset. You may assume that the data is well formatted in the sense that you don't have to transform any values in the name column. For example, assuming we have parsed pokemon_test.csv and stored it in a variable called data:

Respuesta :

Answer:

Escribe una funciĂłn species_count que devuelva el nĂșmero de especies de PokĂ©mon Ășnicas (determinadas por el atributo de nombre) que se encuentran en el conjunto de datos. Puede suponer que los datos estĂĄn bien formateados en el sentido de que no tiene que transformar ningĂșn valor en la columna de nombre. Por ejemplo, suponiendo que analizamos pokemon_test.csv y lo almacenamos en una variable llamada datos:

Explanation: