트위터 데이터 추출

R로 소셜 미디어 데이터 분석하기

Sowmya Vivek

Data Science Coach

학습 개요

  • API 기본 개념
  • 트위터 API 종류
  • R 환경 설정
  • 트위터 데이터 추출
R로 소셜 미디어 데이터 분석하기

API 설명

  • Application Programming Interface
  • 두 애플리케이션이 통신하게 하는 소프트웨어 중개자
  • 트위터 API는 트위터와 상호작용해 트윗에 접근하도록 지원
R로 소셜 미디어 데이터 분석하기

API 기반 구독

스탠다드 API

R로 소셜 미디어 데이터 분석하기

API 기반 구독

프리미엄 및 엔터프라이즈 API

R로 소셜 미디어 데이터 분석하기

R 설정 전제 조건

  • PC에 R을 설정하기 위한 사전 준비
    • 트위터 계정
    • 브라우저 팝업 차단 해제
    • 대화형 R 세션
    • R에 rtweet, httpuv 패키지 설치
  • DataCamp 환경에는 모든 사전 준비가 완료됨
R로 소셜 미디어 데이터 분석하기

rtweet과 httpuv 패키지

rtweet 패키지

httpuv 패키지

R로 소셜 미디어 데이터 분석하기

R 환경 설정

  • PC에서 R 환경 설정 단계
    • rtweethttpuv 라이브러리 활성화
    • 트위터에 연결할 검색어로 search_tweets() 호출
    • 브라우저 팝업에서 액세스 승인
    • "Authentication complete"가 트위터 액세스 승인 완료를 확인
  • DataCamp 환경에는 이미 R이 설정되어 있음
R로 소셜 미디어 데이터 분석하기

트위터 데이터 추출: search_tweets()

  • search_tweets()는 검색어에 맞는 트위터 데이터를 반환
  • 지난 7일 내 트윗만 제공
  • 요청당 최대 18,000개 트윗
# rtweet 라이브러리 로드
library(rtweet)
# search_tweets()로 "#gameofthrones" 트윗 추출
tweets_got <- search_tweets("#gameofthrones", n = 1000, include_rts = TRUE, lang = "en")
R로 소셜 미디어 데이터 분석하기

트위터 데이터 추출: search_tweets()

head(tweets_got, 4)
  user_id                status_id               created_at         screen_name            text
    <chr>                  <chr>                <S3: POSIXct>          <chr>               <chr>
727816588171350017    1176103860554915841    2019-09-23 11:59:45    LeonardoUzcat1    Today.\n\n#GameofThrones has won Outstanding Drama Series at this year's #Emmys. https://t.co/YHlqvmKxLF    
363838927             1176103859464396806    2019-09-23 11:59:45    mariaaa_carmen    We break the wheel together.\n\n#GameofThrones has been awarded 12 #Emmys, the most of any program this year. https://t.co/gTYq8JWCtD    
881880538461618176    1176103856163434497    2019-09-23 11:59:44    _valkyriez        The #Emmys had their chance with Lena for Seasons 5 &amp; 6 and they blew it. It happens. However, the work Lena Heady brought to the role of Cersei Lannister will never go unnoticed in our hearts &amp; memories. One of the great villains &amp; characters in TV history. #GameOfThrones https://t.co/vpznpzAMsP    
521127287             1176103856075431936    2019-09-23 11:59:44    Nudeus            Congrats to #GameofThrones (60%), the most nominated show in a single season. It wins this year’s #Emmy for Outstanding Drama Series. https://t.co/lSoQE6PjDY https://t.co/IUR6kkI5FL
R로 소셜 미디어 데이터 분석하기

트위터 데이터 추출: get_timeline()

  • get_timeline()은 특정 트위터 사용자의 게시 트윗을 추출
  • 최대 3,200개 반환
# get_timeline()으로 Katy Perry 트윗 추출
gt_katy <- get_timeline("@katyperry", n = 3200)
R로 소셜 미디어 데이터 분석하기

트위터 데이터 추출: get_timeline()

# 결과 확인
head(gt_katy)
user_id         status_id               created_at        screen_name                    text
<chr>             <chr>                <S3: POSIXct>          <chr>                      <chr>
21447363    1175132444103565312    2019-09-20 19:39:42     katyperry    My baby angel @cynthialovely is a MOOD. #MoodSwing EP is out now! 👼Angel’s👼 my favorite - which one is yours? https://t.co/VDgri3RYQv https://t.co/XhgCHTJG2o        
21447363    1175033932355649536    2019-09-20 13:08:15     katyperry    CHICAGO! I’m going to make it a Cozy Little Christmas with you (and @Camila_Cabello, @marshmellomusic, @Normani, @OfficialMonstaX, @liltecca, @ajmitchell, and @NCTsmtown_127) when I see you at the @B96Chicago #JingleBash on December 7! Get your 🎟 here: https://t.co/gBEaNYiZyR https://t.co/Qc5FjR28ti    
21447363    1174461907656273920    2019-09-18 23:15:13     katyperry    I still dress like a child to offset adulting 😩😩😩 https://t.co/dvzJBTL5G6        
21447363    1174428616735756288    2019-09-18 21:02:56     katyperry    watch me perform 🎶Small Talk🎶 on theellenshow today for clear skin ✨ @ The Ellen Show https://t.co/WpLUl33YiA        
21447363    1174381476227338240    2019-09-18 17:55:37     katyperry    🎶 #SmallTalk 🎶 with my friend @TheEllenShow TODAY. Ch    
21447363    1174061536580497409    2019-09-17 20:44:17     katyperry    Make a 🌈 connection with @katyperrycollections this #Shoe
R로 소셜 미디어 데이터 분석하기

연습해 봅시다!

R로 소셜 미디어 데이터 분석하기

Preparing Video For Download...