摘要: 调用scipy包中的curve_fit,可以根据指定的函数形式,对一组已知自变量和因变量的数据进行曲线拟合。 也可以定义三个参数的函数: 阅读全文
posted @ 2019-08-18 23:25 justfighting 阅读(6595) 评论(0) 推荐(0)
摘要: 有时候我们需要删除表中部分内容,或删除一个表中在另一个表中已经存在的内容,可以用以下方法: 1、delete from t1 where 条件; 2、delete t1 from t1, t2 where 条件; 3、delete t1, t2 from t1, t2 where 条件; eg: 删 阅读全文
posted @ 2019-08-18 13:52 justfighting 阅读(17605) 评论(0) 推荐(1)