老实烧鹅

文章
9
资源
0
加入时间
2年10月17天

Golang 编译成 DLL 文件

package mainimport "C"import "fmt"//export PrintByefunc PrintBye() { fmt.Println("From DLL: Bye!")}//export Sumfunc Sum(a int, b int) int { return a + b;}func main() { // Nee...

使用describe()查看catering_sale.xls数据的基本情况,通过箱式图检测出catering_sale.xls中的异常值

使用describe()查看catering_sale.xls数据的基本情况import numpy as npimport pandas as pda=pd.read_excel('C:\\Users\Administrator\.spyder-py3\catering_sale.xls')print(a)s=a.describe()print(s)箱形图箱形图(英文:Boxplot),又称为盒须图、盒式图、盒状图或箱线图,是一种用作显示一组数据分散情况资料的统计图。因型状如箱子而得.