mycat执行如下脚本报错 :1064 - syntax error, error in :'Id`) USING BTREE DROP TABLE IF EXISTS `score`;CREATE TABLE `score` ( `Id` int(11) NOT NULL AUTO_INCREME ...
分类:
其他好文 时间:
2019-12-31 00:43:17
阅读次数:
127
1 import pandas as pd 2 3 # 创建一个df 4 df = pd.DataFrame( 5 data={ 6 "name": ["zs", "ls", "ww", "zl"], 7 "age": [18, 19, 29, 11], 8 "score": [92.5, 93, ...
分类:
其他好文 时间:
2019-12-29 20:50:07
阅读次数:
85
z检验: 计算临界值:scipy.stats.norm.ppf(level_of_confidence) 计算p值:scipy.stats.norm.sf(abs(z_score)) 或 1-scipy.stats.norm.cdf(abs(z_score)) 左尾或右尾,双尾检验需在此基础上乘以2 ...
分类:
编程语言 时间:
2019-12-29 16:31:57
阅读次数:
774
题目如下: You are given a square board of characters. You can move on the board starting at the bottom right square marked with the character 'S'. You nee ...
分类:
其他好文 时间:
2019-12-29 10:57:18
阅读次数:
68
Part1 结果正确 区别: 二进制文件需要特别的解码器,文本文件可以读写。 #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-28 19:28:28
阅读次数:
89
两个函数细节记不住. 写个例子备注一下. 结果 | no | name | score | rk1 | rk2 | rn1 | rn2 | | | | | | | | | | 1 | b | 2 | 5 | 1 | 5 | 1 | | 1 | a | 1 | 3 | 2 | 3 | 2 | | 1 ...
分类:
数据库 时间:
2019-12-27 11:52:38
阅读次数:
93
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-25 01:54:14
阅读次数:
99
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-25 01:33:16
阅读次数:
52
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-25 01:24:34
阅读次数:
60
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-25 01:14:36
阅读次数:
61