摘要: 安装RMySQL:install.packages("RMySQL") 使用RMySQL操作数据库library(DBI)#RMySQL 依赖于 DBI包library(RMySQL) #查看RMySQL的说明文档,里面有RMySQL所有可用的方法help(package="RMySQL") #创建 阅读全文
posted @ 2016-04-06 16:10 yudedipan 阅读(165) 评论(0) 推荐(0) 编辑
摘要: Mysql 的官网下载地址: http://dev.mysql.com/downloads/ 在这个下载界面会有几个版本的选择。 1. MySQL Community Server 社区版本,免费,但是Mysql不提供官方技术支持。 MySQLCommunity Server is a freely 阅读全文
posted @ 2016-04-05 20:15 yudedipan 阅读(211) 评论(0) 推荐(0) 编辑
摘要: Guava 是一个 Google 的基于java1.6的类库集合的扩展项目,包括 collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, 阅读全文
posted @ 2016-04-05 20:08 yudedipan 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 博文: http://www.fishdomain.cn/?p=75 阅读全文
posted @ 2016-04-04 17:59 yudedipan 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 博文: http://www.fishdomain.cn/?p=73 阅读全文
posted @ 2016-04-04 17:48 yudedipan 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 博文详见: http://www.fishdomain.cn/?p=46 阅读全文
posted @ 2016-04-01 09:49 yudedipan 阅读(835) 评论(1) 推荐(0) 编辑
摘要: 博文详见: http://www.fishdomain.cn/?p=16 阅读全文
posted @ 2016-04-01 09:48 yudedipan 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 协同过滤算法 阅读全文
posted @ 2016-04-01 09:46 yudedipan 阅读(196) 评论(0) 推荐(0) 编辑
摘要: package com.yh.spark import org.apache.spark.SparkConf import org.apache.spark.SparkContext object WordCount { def main(args: Array[String]): Unit = { 阅读全文
posted @ 2016-03-04 09:35 yudedipan 阅读(1979) 评论(0) 推荐(0) 编辑
摘要: package com.tydic.test /** * 除去数组中第一个负数以外的所有负数 */ object Test2 { def main(args: Array[String]): Unit = { val arr = Array(1, 2, 0, 3, 4, -1, -2, -3 ,0) 阅读全文
posted @ 2016-02-24 16:59 yudedipan 阅读(466) 评论(0) 推荐(0) 编辑