# Springer 佛心提供的防疫免費書 - Yao隨意選
因應疫情,Springer 開放了近 400 本書提供下載~
[](https://www.facebook.com/photo?fbid=575921426373487&set=a.143800309585603)
書本總數接近 400 多本,而且都在網站目錄上,所以有厲害的大神寫了 Python 與 R 套件,輕鬆就可以把這些書抓下來。而不單是批量下載,還可以指定書名或主題抓特定的書回來看。
如果要有效率地下載這些書有兩個方法:
1. 會用 R or Python,就直接用下面這兩個教學下載:
- [使用 R 的批量下載書步驟](https://bit.ly/2xfQZxs)
- [使用 Python 的批量下載書步驟](https://bit.ly/2KDno46)
2. 不寫程式還是有有效率的下載方式,就是使用 [R 教學文件](https://bit.ly/2xfQZxs)裡面的的互動式搜尋列表(順帶一提,這種互動元件也是 R 可以輕易產出的東西喔喔):

==建議下載 CSV or Excel 檔案回來,選好自己想下載的書名,丟到 Search 去找到下載連結==
## 我選了哪些書?
這些 Spring 提供下載的書主題包山包海,從量子物理到歷史學,所以我就試試著選了一些個人感興趣的 50 幾本,大家有興趣可以使用下面這個 R Script 來下載
```r=
# devtools::install_github("renanxcortes/springerQuarantineBooksR")
library(springerQuarantineBooksR) # Loading library
## Selecting books of interest
book_list <- c("A Beginner's Guide to R",
"A Beginner's Guide to Scala, Object Orientation and Functional Programming",
"A Beginners Guide to Python 3 Programming",
"A Concise Guide to Market Research",
"A Modern Introduction to Probability and Statistics",
"A Primer on Scientific Programming with Python",
"Advanced Guide to Python 3 Programming",
"An Introduction to Statistical Learning",
"Applied Linear Algebra",
"Applied Multivariate Statistical Analysis",
"Bayesian and Frequentist Regression Methods",
"Bayesian Essentials with R",
"Data Structures and Algorithms with Python",
"Design and Analysis of Experiments",
"Design Research in Information Systems",
"Elementary Analysis",
"Excel Data Analysis",
"Foundations of Programming Languages",
"Guide to Competitive Programming",
"Handbook of Consumer Finance Research",
"Introduction to Artificial Intelligence",
"Introduction to Data Science",
"Introduction to Deep Learning",
"Introduction to Parallel Computing",
"Introduction to Statistics and Data Analysis",
"Introduction to Time Series and Forecasting",
"Introductory Statistics with R",
"Introductory Time Series with R",
"Knowledge Management",
"LaTeX in 24 Hours",
"Market Research",
"New Introduction to Multiple Time Series Analysis",
"Philosophy of Science for Scientists",
"Probability",
"Probability and Statistics for Computer Science",
"Probability Theory",
"Probability Theory",
"Quantitative Methods for the Social Sciences",
"Regression Modeling Strategies",
"Research Methods for the Digital Humanities",
"SPSS for Starters and 2nd Levelers",
"Statistical Analysis and Data Display",
"Statistical Learning from a Regression Perspective",
"Statistics and Analysis of Scientific Data",
"The Action Research Planner",
"The Data Science Design Manual",
"The Psychology of Social Status",
"The Python Workbook",
"Time Series Analysis",
"Time Series Econometrics",
"Understanding Analysis",
"Understanding Statistics Using R",
"Writing for Publication")
download_springer_book_files(springer_books_titles = book_list)
# Remind: ignoring the warning msg. and checking that the books will be downloaded to working directory
```
這些書用 R 下載下來後,會放到你的工作資料夾(Working Directory)裡面的 `springer_quarantine_books` 資料夾。而且還它還按照書的主題分類好了...😭

個人興趣是==Data analysis, Statistics, R, Python==,所以就試著從中整理出與這些主題相關的書目。([點我看我選了哪些書](https://docs.google.com/spreadsheets/d/19Sm2Vv4CQPXWB7tKRHrlJjqGQ9arQUbVV46wccl6wis/edit?usp=sharing))

### 大概就這樣,大家看書愉快!!