- Machine Learning with R Quick Start Guide
- Iván Pastor Sanz
- 60字
- 2021-06-24 16:01:31
Creating lists
We can create a list using list() or by concatenating other lists:
x<- list(1:4,"book",TRUE, 1+4i)
x
## [[1]]
## [1] 1 2 3 4
##
## [[2]]
## [1] "book"
##
## [[3]]
## [1] TRUE
##
## [[4]]
## [1] 1+4i
Components will always be referred to by their referring numbers as they are ordered and numbered.
推薦閱讀
- Ansible Configuration Management
- 輕松學C#
- Verilog HDL數字系統設計入門與應用實例
- Zabbix Network Monitoring(Second Edition)
- Visual C# 2008開發技術詳解
- 計算機網絡原理與技術
- Splunk Operational Intelligence Cookbook
- Linux內核精析
- LMMS:A Complete Guide to Dance Music Production Beginner's Guide
- 未來學徒:讀懂人工智能飛馳時代
- MongoDB 4 Quick Start Guide
- 簡明學中文版Flash動畫制作
- EDA技術及其創新實踐(Verilog HDL版)
- Mastering Android Game Development with Unity
- Spark Streaming實時流式大數據處理實戰