fitbitScraper

R package to scrape fitbit data

  • 所有者: corynissen/fitbitScraper
  • 平台:
  • 許可證: Other
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

fitbitScraper 0.1.8

New changes:

  • Added minutesSedentary data to 'get_daily_data'
  • fixed bug in the column names in ‘get_daily_data’ for getTimeInHeartRateZonesPerDay
  • if login returns a cookie that is character(0), throw error

This package scrapes data from fitbit.com
It only works if you use email / password to login. Not sure about facebook or google login.

Usage:

install.packages("fitbitScraper")
library("fitbitScraper")

cookie <- login(email="corynissen@gmail.com", password="mypassword")  
# 15_min_data "what" options: "steps", "distance", "floors", "active-minutes", "calories-burned"   
df <- get_intraday_data(cookie, what="steps", date="2015-01-21")  
library("ggplot2")  
ggplot(df) + geom_bar(aes(x=time, y=data, fill=data), stat="identity") + 
             xlab("") +ylab("steps") + 
             theme(axis.ticks.x=element_blank(), 
                   panel.grid.major.x = element_blank(), 
                   panel.grid.minor.x = element_blank(), 
                   panel.grid.minor.y = element_blank(), 
                   panel.background=element_blank(), 
                   panel.grid.major.y=element_line(colour="gray", size=.1), 
                   legend.position="none") 

# daily_data "what" options: "steps", "distance", "floors", "minutesVery", "caloriesBurnedVsIntake"   
df <- get_daily_data(cookie, what="steps", start_date="2015-01-13", end_date="2015-01-20")  
ggplot(df) + geom_point(aes(x=time, y=data))  

主要指標

概覽
名稱與所有者corynissen/fitbitScraper
主編程語言R
編程語言R (語言數: 1)
平台
許可證Other
所有者活动
創建於2015-01-22 05:09:53
推送於2017-07-23 18:15:34
最后一次提交2017-04-13 10:15:02
發布數4
最新版本名稱0.1.8 (發布於 )
第一版名稱0.1.5 (發布於 )
用户参与
星數118
關注者數21
派生數37
提交數173
已啟用問題?
問題數14
打開的問題數6
拉請求數5
打開的拉請求數2
關閉的拉請求數0
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?