转到数据库
批量加载器的hello world实现。
安装
克隆或下载gotodb.go 。
配置
数据文件必须由任何字段值都不使用的字符定界。 此外,字段值必须与HelloDB元数据顺序相同。
例如, data.txt :
Joe|28|Boston
Bob|35|New York
|35|New York
Susan|35
用法
使用适当的命令行参数运行脚本:
go run gotodb.go
例如:
go run gotodb.go customers data.txt '|
获取和清理数据课程项目
科林2020/8/29
资料读取
您可以使用以下代码读取数据:
data <- read.table( " ./data/tidy_dataset.txt " , header = TRUE ) # the file url should be modified accordingly if the txt file is saved in a different directory
该存储库包含以下文件:
自述文件
run_analysis.R:用于生成数据集