numpy.mean
The numpy.mean function returns the average of the elements in array a. By default the average of the array is calculated once it is flattened. If an axis is specified, only that axis will be considered in the calculation.
The numpy.mean function returns the average of the elements in array a. By default the average of the array is calculated once it is flattened. If an axis is specified, only that axis will be considered in the calculation.
The MINA function returns the smallest value in a column considering numbers, dates and logical values.
The numpy.ndarray.shape attribute returns a tuple with the size of the array, but can also be used to resize it. As with the numpy.reshape function, one of the dimensions sizes can be -1, in which case the size of that dimension is inferred from the number of elements in the array and the size of the other dimensions.
The math.radians function returns the radian equivalent of the specified angle in sexagesimal degrees.
The constant math.pi returns the number pi to 15 decimal places.
The sorted function returns a new ordered list from the elements of the iterable passed as an argument.
The min function returns the minimum value of an iterable, or the minimum value of two or more arguments. If only one positional argument is specified, it must be an iterable and the function will return its lowest element. If two or more positional arguments are included, the function will return the lowest argument. If multiple minimum values are found, the first one found is returned.
The max function returns the maximum value of an iterable, or the maximum value of two or more arguments. If only one positional argument is specified, it must be an iterable and the function will return its highest element. If two or more positional arguments are included, the function will return the highest argument. If multiple maximum values are found, the first one found is returned.
The str function returns the text version of the object included as an argument. If no argument is included, the function returns an empty text string.
The print function prints the first argument, objects, in the file channel, using sep as a separator and followed by end. The arguments sep, end, file, and flush, if specified, must be given as keyword arguments.
All arguments that are not specified with a keyword are converted to text strings. Both sep and end must be text strings, although they can also be None, which will mean that the default values are considered.
Excepto donde se indique otra cosa, los contenidos de este sitio web se ofrecen bajo una licencia Reconocimiento-NoComercial-SinObraDerivada 4.0 Internacional