- 博客(13)
- 收藏
- 关注
原创 SPSS学习资料汇总
1)知乎帖子:如何快速掌握 SPSS ?https://www.zhihu.com/question/229139512)上面知乎中答复,可汗学院统计学:http://open.163.com/special/Khan/khstatistics.html
2018-12-19 12:45:42
2329
转载 SPSS 自动线性建模 模型导出方法
方法一:转载:http://www.bubuko.com/infodetail-1157204.html通过之前的步骤已经产生了一个线性模型来预测当前薪金的值,如果需要将这个模型保存出来以便对今后的数据进行预测应用,可以在模型浏览器中,选择:文件 -> 导出 PMML,将该模型导出为一个名为:预测当前薪金的线性模型 .zip 的文件,如果解压该文件可以看到一个 xml 文件,该文件是...
2018-11-22 11:43:05
6852
转载 SPSS中对于多选题二分法和多重分类法的分析处理
SPSS中对于多选题二分法和多重分类法的分析处理,转自博客: http://blog.sina.com.cn/s/blog_44ecbaae0100qsea.html
2018-11-10 17:57:44
15977
2
原创 基于《谁说菜鸟不会数据分析(SPSS篇)》
本书的数据来源:(1)http://blog.sina.com.cn/xiaowenzi22(2)关注微信订阅号:小蚊子数据分析,回复"1"或“SPSS篇”获取下载链接(3)http://read.zhiliaobang.com/pages/article/43...
2018-11-04 16:49:11
2624
转载 Mysql增加主键或者更改表的列为主键的sql语句
参考博客:https://www.cnblogs.com/besty/p/3917592.html添加表字段alter table table1 add transactor varchar(10) not Null;alter table table1 add id int unsigned not Null auto_increment primary key修改某个表的字段类型及指定为空...
2018-07-05 11:24:27
5075
原创 常见的SQL笔试题和面试题(上):经典50题
https://zhuanlan.zhihu.com/p/38354000常见的SQL笔试题和面试题(上):经典50题已知有如下4张表:学生表:STUDENT(S#,SNAME,SAGE,SSEX)课程表:COURSE(C#,CNAME,T#)成绩表:SC(S#,C#,SCORE)教师表:TEACHER(T#,TNAME)其中,1)学生表里的字段含义:S#代表学号,SNAME代表学生姓名,SAGE...
2018-07-04 17:09:43
194064
22
转载 数据库中Schema(模式)概念的理解
摘自:https://www.cnblogs.com/csniper/p/5509620.html在学习SQL的过程中,会遇到一个让你迷糊的Schema的概念。实际上,schema就是数据库对象的集合,这个集合包含了各种对象如:表、视图、存储过程、索引等。为了区分不同的集合,就需要给不同的集合起不同的名字,默认情况下一个用户对应一个集合,用户的schema名等于用户名,并作为该用户缺省schema...
2018-07-02 09:01:53
1298
原创 sqlzoo习题答案--Self join
Details of the database Looking at the dataDetails of the database Looking at the datastops(id, name)route(num,company,pos, stop) stopsrouteidnumnamecompany pos stop
2018-06-28 10:01:00
1050
原创 sqlzoo习题答案--More JOIN operations
This tutorial introduces the notion of a join. The databaseconsists of three tables movie , actor and casting .movieidtitleyrdirectorbudgetgrossactoridnamecastingmovieidactoridord<
2018-06-24 17:12:04
576
原创 mysql学习网站链接
1.W3School: http://www.w3school.com.cn/sql/index.asp2.sql练习:http://sqlzoo.net
2018-06-24 10:38:00
679
原创 sqlzoo习题答案--Using Null
5.Use COALESCE to print the mobile number. Use the number '07986 444 2266' if there is no number given.Show teacher name and mobile number or '07986 444 2266'select name,coalesce(mobile,'07986 444 226...
2018-06-22 10:48:51
528
原创 sqlzoo习题答案-Select within Select Tutorial
8.List each continent and the name of the country that comes first alphabetically.select continent,min(name)from worldgroup by continentorder by continent*******方法二*******
2018-06-22 10:30:50
725
原创 sqlzoo习题答案--The join operation
sqlzoo地址:http://sqlzoo.net/wiki1.The join operation(8).show the name of all players who scored a goal against Germany.HINTSelect goals scored only by non-German players in matches where GER was the id...
2018-06-16 19:51:06
1166
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人