要在R語言中讀取Google Sheets數(shù)據(jù),可以使用googlesheets4包。首先,需要安裝和加載googlesheets4包:
```R
install.packages("googlesheets4")
library(googlesheets4)
```
接著,使用`gs4_get()`函數(shù)來讀取Google Sheets數(shù)據(jù)。首先,需要使用`gs4_auth()`函數(shù)來進(jìn)行身份驗(yàn)證:
```R
gs4_auth()
```
然后,可以使用`gs4_get()`函數(shù)來讀取Google Sheets中的數(shù)據(jù)。例如,假設(shè)我們的Google Sheets文件名為“example_sheet”,可以使用以下代碼來讀取數(shù)據(jù):
```R
sheet_id <- "your_sheet_id"
sheet <- "Sheet1"
data <- gs4_get(sheet_id, sheet = sheet)
```
在上面的代碼中,將`your_sheet_id`替換為你的Google Sheets文件的ID,`Sheet1`替換為要讀取的表格名稱。數(shù)據(jù)將被保存在`data`變量中,您可以進(jìn)一步對數(shù)據(jù)進(jìn)行處理和分析。