convert_std_units(ser): This function takes one input: ser: a Series. Takes a Series of numeric values and converts to standard units, that is, it computes the mean and standard deviation of ser, and for each s in ser, computes (s - mean)/(standard deviation) and returns the resulting series program returned Tests convert_std_units() on Series from a Gaussian with mu=10 & sigma=5. (0.0/3.0) For column: 0 3.758701 1 12.609100 2 16.768416 3 8.938544 4 4.511551 5 28.243002 6 4.529200 7 9.719007 8 7.083212 9 10.595014 dtype: float64 Your program returned: -0.9374788776407995 Expected return values: 0 -0.937479 1 0.262060 2 0.825794 3 -0.235429 4 -0.835441 5 2.381002 6 -0.833049 7 -0.129648 8 -0.486891 9 -0.010919 dtype: float64 The difference is 9.374788776407996. The Series did not match expected output. Test Failed: False != True
Operations
In mathematics and computer science, an operation is an event that is carried out to satisfy a given task. Basic operations of a computer system are input, processing, output, storage, and control.
Basic Operators
An operator is a symbol that indicates an operation to be performed. We are familiar with operators in mathematics; operators used in computer programming are—in many ways—similar to mathematical operators.
Division Operator
We all learnt about division—and the division operator—in school. You probably know of both these symbols as representing division:
Modulus Operator
Modulus can be represented either as (mod or modulo) in computing operation. Modulus comes under arithmetic operations. Any number or variable which produces absolute value is modulus functionality. Magnitude of any function is totally changed by modulo operator as it changes even negative value to positive.
Operators
In the realm of programming, operators refer to the symbols that perform some function. They are tasked with instructing the compiler on the type of action that needs to be performed on the values passed as operands. Operators can be used in mathematical formulas and equations. In programming languages like Python, C, and Java, a variety of operators are defined.
- convert_std_units(ser): This function takes one input:
- ser: a Series.
program returned
Step by step
Solved in 4 steps with 2 images