Python can be used to implement central of tendencies such as mean, median and mode using the statistic module
The program in Python, where comments are used to explain each line is as follows:
#This imports the statistics module
import statistics
#This defines the function that calculates the mode
def calcMode(myList):
#This prints the mode
print(statistics.multimode(myList))
#This defines the function that calculates the median
def calcMedian(myList):
#This prints the median
print(statistics.median(myList))
#The main method begins here
#This initializes the list
myList = []
#The following iteration gets input for the list
for i in range(10):
myList.append(int(input()))
#This calls the calcMode method
calcMode(myList)
#This calls the calcMedian method
calcMedian(myList)
Read more about similar programs at:
brainly.com/question/25026386
<u>Question 9:</u>
The correct answer would be either (b) or (d).
<u>Question 10:</u>
<u></u>
The correct answer would be (b).
Hope it helps. :)
Page break preview identifies manual page breaks with a dotted blue line and automatic page breaks with a solid blue line.
a. True
Answer:
Data mining is a process of extracting and discovering patterns in large data sets involving methods at the intersection of machine learning, statistics, and database systems.
Answer:
The steps required to add a bibliography after adding the sources of the information contained in the document and marking the references made in the text, are;
1. Click to select insertion point of the bibliography
2. Select the Reference tab by clicking on the Reference tab in the ribbon
3. Within the Citations & Bibliography group, select Bibliography to open a dropdown list of bibliography format
4. Select the applicable format
5. By selecting the desired bibliography format, the bibliography is inserted at the selected insertion point of the document
Explanation: