上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页
摘要: val rddFromFile = spark.sparkContext.textFile("test.txt").collect().mkString("\n") 注:本地文件的话,这里用相对路径和绝对路径都可以,或直接传hdfs路径 取Array[String]的第一个元素: val rddFr 阅读全文
posted @ 2021-06-30 20:09 船长博客 阅读(761) 评论(0) 推荐(0) 编辑
摘要: df.withColumn("Test", lit(null)).show() + + + + + |Hour|Category|Value|Test| + + + + + | 0| cat26| 30.9|null| | 1| cat67| 28.5|null| | 2| cat56| 39.6| 阅读全文
posted @ 2021-06-23 18:51 船长博客 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 传给后端之前先做下替换处理,后端再split就能获取到每行数据,我这里用的是分号进行分隔: this.content.replace(/\n/g,':') 阅读全文
posted @ 2021-06-09 20:03 船长博客 阅读(1658) 评论(0) 推荐(0) 编辑
摘要: diamonds 是内置数据集library(ggplot2) ggplot(diamonds, aes(carat)) + geom_density() ggplot(diamonds, aes(depth, colour = cut)) + geom_density() + xlim(55, 7 阅读全文
posted @ 2021-06-09 18:12 船长博客 阅读(3731) 评论(0) 推荐(0) 编辑
摘要: RData文件存储的是对象,比如a=5 > num <- seq(0, 5, length.out=10) #创建对象num > num [1] 0.0000000 0.5555556 1.1111111 1.6666667 2.2222222 2.7777778 3.3333333 3.88888 阅读全文
posted @ 2021-06-09 13:11 船长博客 阅读(2355) 评论(0) 推荐(0) 编辑
摘要: group_by(id) %>% arrange(desc(date)) %>% #按日期降序 filter(row_number()==1) %>% ungroup 参考:https://stackoverflow.com/questions/13279582/select-the-first-r 阅读全文
posted @ 2021-06-08 16:31 船长博客 阅读(603) 评论(0) 推荐(0) 编辑
摘要: 查看所有的表 :list 查看表中所有数据:scan 'staff' 前10条: scan 'test-table',{'LIMIT' => 10} 后10条: scan 'test-table',{'LIMIT' => 10, REVERSED => TRUE} 查看表结构:desc 'staff 阅读全文
posted @ 2021-06-04 18:16 船长博客 阅读(198) 评论(0) 推荐(0) 编辑
摘要: scan 'test-table',{'LIMIT' => 10, REVERSED => TRUE} 阅读全文
posted @ 2021-06-04 18:03 船长博客 阅读(604) 评论(0) 推荐(0) 编辑
摘要: scan 'test-table', {'LIMIT' => 10} 阅读全文
posted @ 2021-06-04 17:43 船长博客 阅读(5756) 评论(0) 推荐(1) 编辑
摘要: 仅作为调试用,简单粗暴 ALLOWED_HOSTS=['*'] CORS_ORIGIN_ALLOW_ALL = True 或者: 1. pip install django-cors-headers 2. INSTALLED_APPS = [ ... 'corsheaders', ... ] 3. 阅读全文
posted @ 2021-06-03 18:14 船长博客 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 创建DataFrameF示例 val df = sc.parallelize(Seq( | (0,"cat26","cat26"), | (1,"cat67","cat26"), | (2,"cat56","cat26"), | (3,"cat8","cat26"))).toDF("Hour", " 阅读全文
posted @ 2021-06-03 18:08 船长博客 阅读(2031) 评论(0) 推荐(0) 编辑
摘要: git status中文显示乱码解决: git config --global core.quotepath false git log中文乱码解决: git config --global gui.encoding utf-8 git config --global i18n.commitenco 阅读全文
posted @ 2021-05-31 18:07 船长博客 阅读(441) 评论(0) 推荐(0) 编辑
摘要: Mac 在应用商店下载 QQ浏览器 Lite版 可直接使用 其他浏览器: 360安全浏览器、360极速浏览器、QQ浏览器等支持在兼容模式和极速模式之间切换的双核浏览器,在需要使用Flash的页面切换至兼容模式可正常使用。 继续使用谷歌浏览器:使用版本号在Chrome 79以下的谷歌浏览器,设置允许F 阅读全文
posted @ 2021-05-18 18:16 船长博客 阅读(4218) 评论(0) 推荐(0) 编辑
摘要: 1.登录GitHub,点击右上角的 + 号按钮,选择【New repository】,打开创建新仓库页面。 https://github.com/ 创建一个名为为username.github.io的代码仓库,其中username为你的GitHub的账户名称。如示例的用户名称为octocat 可见性 阅读全文
posted @ 2021-05-01 08:48 船长博客 阅读(892) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash echo "Enter a number:" read num i=1 # 创建空数组 ret=() while(( $i<=$num )) do abc=`expr $i % 2` if [ $abc -ne 0 ] then # 在数据尾部插入数据 ret[${#ret[ 阅读全文
posted @ 2021-04-28 20:01 船长博客 阅读(1411) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 27 下一页
永远相信美好的事情即将发生!