티스토리 뷰
# 문제 : 월드시리즈 AL vs NL 어느 리그가 더 많이 이겼는가?
# 자료수집(직접 입력)
NL <- c("FLA", "STL", "HOU", "STL", "COL",
"PHI", "PHI", "SFG", "STL", "SFG",
"STL", "SFL", "NYM")
AL <- c("NYY", "BOS", "CHW", "DET", "BOS",
"TBR", "NYY", "TEX", "TEX", "DET",
"BOS", "KC", "KC")
Winner <- c("NL", "AL", "AL", "NL", "AL",
"NL", "AL", "NL", "NL", "NL",
"AL", "NL", "AL")
N.Games <- c(6,4,4,5,4,5,6,5,7,4,6,7,5)
Year <- 2003:2015
# 자료구조를 행렬(matrix)로 변경
results <- matrix(c(NL, AL), length(NL), 2)
# results <- matrix(c(NL, AL), 10, 2) : NOT a sub-multiple or multiple of the number of rows[10]
results
# 'dimnames' : add descriptive labels to the rows and columns of the matrix
dimnames(results)[[1]] <- Year
dimnames(results)[[2]] <- c("NL Team", "AL Team")
results
# 'table' construct a frequency table for a vector of character data.
table(Winner)
# AL 6 : NL 7 => 내셔널리그 우세
# 그래프로 나타내기
# a bar graph of the frequencies
barplot(table(Winner))
- Total
- Today
- Yesterday
- CFA #Level2
- Machine Learning
- ddply
- #as.Date
- 파이썬 증권데이터 분석
- V리그 #챔피언결정전 #2022-2023 #아본단자 #김종민
- #strptime
- CFA
- SD바이오센서 #에스디바이오센서
- Python
- CFA LEVEL2
- 2023
- #R
- #ymd
- BaseBall
- SAS
- Kaggle
- Convolutional Neural Network
- cnn
- 파이썬
- Order
- barplot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |