Computer Science, asked by Mukulkinker5306, 2 months ago

_________ are used to enter and analyse numeric data.

Answers

Answered by poojan
15

Statistical Numerical methods are used to enter and analyze numeric data.

Explanation:

mean(), median(), mode(), median__low(), median__high(), etc are some of the statistical methods we use the most.

Usage of statistics keyword and the packages like numpy, scipy, pandas are used to import these functions and carry out them in python.

import numpy

l=[1,12,3,14,5]

print(numpy.mean(l))

print(numpy.median(l))

Output:

7.0

5.0

Learn more:

Write a Python function sumsquare(l) that takes a nonempty list of integers and returns a list [odd,even], where odd is the sum of squares all the odd numbers in l and even is the sum of squares of all the even numbers in l.

brainly.in/question/15473120

Python program to find absolute difference between the odd and even numbers in the inputted number.

brainly.in/question/11611140

Similar questions