도수 명령

GeoGebra Manual
Mathcare (토론 | 기여)님의 2020년 6월 28일 (일) 20:53 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
이동: 둘러보기, 검색
Accessories dictionary.png
이 페이지는 공식 매뉴얼에서 출력과 pdf를 위한 부분입니다. 일반 사용자들은 이 페이지를 편집할 수 없습니다. 만일 이 페이지에서 오류를 발견하였으면, 연락하여 주시기 바랍니다.사용자에 의해 편집 가능한 버전으로 이동
Frequency( <List of Raw Data> )
Returns a list with a count of the occurrences of each unique value in the given list of data. This input list can be numbers or text. The list is sorted in ascending order of the unique values. To get a list of the corresponding unique values use the Unique Command.
예: Enter list1 = { "a", "a", "x", "x", "x", "b" }. Frequency(list1) returns the list { 2, 1, 3 }. Unique(list1) returns the list { "a", "b", "x" }.
Frequency( <Boolean Cumulative>, <List of Raw Data> )
If Cumulative = false, returns the same list as Frequency( <List of Raw Data> )
If Cumulative = true, returns a list of cumulative frequencies for Frequency( <List of Raw Data> ) .
예: Enter list1 = { 0, 0, 0, 1, 1, 2 }. Frequency(true, list1) returns the list { 3, 5, 6 }. Frequency(false, list1) returns the list { 3, 2, 1}. Unique(list1) returns the list { 0, 1, 2 }.
Frequency( <List of Class Boundaries>, <List of Raw Data> )
Returns a list of the counts of values from the given data list that lie within intervals of the form [a, b), where a and b are all the couples of consecutive numbers in the given class boundaries list. The highest interval has the form [a, b].
예: Frequency({1, 2, 3}, {1, 1, 2, 3}) returns the list { 2, 2 }.
Frequency( <List of Text>, <List of Text> )
Returns a contingency matrix containing counts of paired values from the two lists. The rows of the matrix correspond to the unique values in the first list, and the columns correspond to the unique values in the second list. To get a list of the unique values for each list use the command Unique Command.
예: Let list1 = {"a", "b", "b", "c", "c", "c", "c"} and list2 = {"a", "b", "a", "a", "c", "c", "d"}. Then Frequency(list1, list2) returns the matrix \begin{pmatrix} 1 & 0 & 0 & 0\\ 1 &1 & 0 &0 \\ 1 & 0 & 2 & 1 \\ \end{pmatrix}
노트: See also the ContingencyTable command.


Frequency( <Boolean Cumulative>, <List of Class Boundaries>,<List of Raw Data> )
If Cumulative = false, returns the same list as Frequency( <List of Class Boundaries>, <List of Raw Data> )
If Cumulative = true, returns a list of cumulative frequencies for Frequency( <List of Class Boundaries>, <List of Raw Data> )
Frequency( <List of Class Boundaries>, <List of Raw Data>, <Use Density> , <Density Scale Factor> (optional) )
Returns a list of frequencies for the corresponding Histogram Command.
If Use density = false, returns the same list as Frequency( <List of Class Boundaries>, <List of Raw Data> )
If Use density = true, returns the list of frequencies of each class.
예: Let data = {1, 2, 2, 2, 3, 3, 4, 4, 4, 4} be the list of raw data and classes={0, 2, 5} the list of class boundaries. Then Frequency(classes, data, false) and Frequency(classes, data) both return the list {1, 9}, while Frequency(classes, data, true) returns the list {0.5, 3}.
Frequency( <Boolean Cumulative>, <List of Class Boundaries>, <List of Raw Data>, <Use Density> , <Density Scale Factor> (optional) )
Returns a list of frequencies for the corresponding Histogram Command.
© 2024 International GeoGebra Institute