불만 유형별 감성 시각화
이제 sentiment_twitter 데이터 프레임을 만들고, 평균적으로 불만 트윗이 정말 더 부정적인지 확인해 보세요.
이 연습은 강의의 일부입니다
R로 시작하는 텍스트 분석
실습형 인터랙티브 연습
이 예제를 이 샘플 코드를 완성하여 풀어보세요.
sentiment_twitter <- tidy_twitter %>%
# Append the bing sentiment dictionary
___(___) %>%
# Count by complaint label and sentiment
___(___) %>%
# Spread the sentiment and count columns
___(___) %>%
# Compute overall_sentiment = positive - negative
___(___)