Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP. Bhisham C. Gupta

Чтение книги онлайн.

Читать онлайн книгу Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP - Bhisham C. Gupta страница 30

Statistics and Probability with Applications for Engineers and Scientists Using MINITAB, R and JMP - Bhisham C. Gupta

Скачать книгу

5 1 3 1 2 1 4 1 4 5 4 1 1 2 4 1 4 1 2 4 3 3 4 1 4 1 4 1 2 1 5 3 1 5 2 1 2 3 1 2 2 1 1 2 1 5 3 2 5 5 2 5 4 3 5 2 3 2 3 5 2 3 5 5 2 3 2 5 1 4
Frequency Cumulative Cumulative
Categories Tally or count frequency Percentage percentage
1 ///// ///// ///// ///// ///// /// 28 28 25.45 25.45
2 ///// ///// ///// ///// ///// / 26 54 23.64 49.09
3 ///// ///// ///// ///// 20 74 18.18 67.27
4 ///// ///// ///// / 16 90 14.55 81.82
5 ///// ///// ///// ///// 20 110 18.18 100.00
Total 110 100.00

      Interestingly, we can put technology to work on data in Table 2.3.1 to produce Table 2.3.2.

      Solution:

      MINITAB

      1 Enter the data in column C1 of the Worksheet Window and name it Categories.

      2 From the Menu bar, select Stat Tables Tally Individual Variables

      3 In this dialog box, enter C1 in the box under Variables.

      4 Check all the boxes under Display and click OK.

      5 The frequency distribution table as shown below appears in the Session window.

      This frequency distribution table may also be obtained by using R as follows:

       USING R

      #Assign given data to the variable data data = c(4,3,5,3,4,1,2,3,4,3,1,5,3,4,2,1,1,4,5,3,2,5,2,5,2,1,2,3,3,2, 1,5,3,2,1,1,2,1,2,4,5,3,5,1,3,1,2,1,4,1,4,5,4,1,1,2,4,1,4,1,2,4,3,4,1, 4,1,4,1,2,1,5,3,1,5,2,1,2,3,1,2,2,1,1,2,1,5,3,2,5,5,2,5,3,5,2,3,2,3,5, 2,3,5,5,2,3,2,5,1,4) #To get frequencies data.freq = table(data) #To combine necessary columns freq.dist = cbind(data.freq, cumsum(data.freq), 100*cumsum(data.freq)/sum(data.freq)) #To name the table columns colnames(freq.dist)

Скачать книгу