Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 제어문
- 멤버십 연산자
- ReactNative
- javascript
- 자료형
- sd()
- match case
- 반복문
- f-string
- sqldf
- group_by()
- 소수출력
- Django
- mutate()
- notion
- summarise()
- R 데이터 분석
- while
- Swift
- react
- vs code
- 조건문
- 점프투장고
- inflearn
- COUNT()
- 별찍기
- python
- 동일성 연산자
- input함수
- pycharm
Archives
- Today
- Total
목록R 데이터 분석 (1)
✏️
221128 | ① R 데이터 분석 / sqldf / R에서 SQL문법 쓰기 / mutate() / group_by() / summarise() / count() / sd() / fBasics::skewness() / 표준편차 / 왜도
https://bean-three.tistory.com/38 ⬆221125 Q.예제3 답부터 이어서 작성. # Q. # ggplot2::mpg 를 활용하여 다음 요청내용을 출력하세요. # library: ggplot2, dplyr # 1) hyundai 차량 중, hwy(고속도로 연비)가 높은 순으로 출력하세요. # 2) hyundai 차량 중, hwy가 높은 순위(1~3위)에 해당하는 자동차 정보를 출력하세요. unique(my_mpg$manufacturer) dim(my_mpg) my_mpg %>% filter(manufacturer == "hyundai") %>% # nrow() # 14개 select(1,2,11,9) %>% arrange(-hwy) %>% # 내림차순 View() # Top 3 ..
K-Digital Training
2022. 11. 29. 08:30