上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: 阅读全文
posted @ 2019-01-14 00:03 凯撒鸡肉卷 阅读(107) 评论(0) 推荐(0)
摘要: PHP 运算符 本章节我们将讨论 PHP 中不同运算符的应用。 在 PHP 中,赋值运算符 = 用于给变量赋值。 在 PHP 中,算术运算符 + 用于把值加在一起。 PHP 算术运算符 PHP 赋值运算符 在 PHP 中,基本的赋值运算符是 "="。它意味着左操作数被设置为右侧表达式的值。也就是说, 阅读全文
posted @ 2019-01-13 00:05 凯撒鸡肉卷 阅读(138) 评论(0) 推荐(0)
摘要: 基本的 PHP 语法 PHP 脚本可以放在文档中的任何位置。 PHP 脚本以 <?php 开始,以 ?> 结束: <?php// PHP 代码?> <?php// PHP 代码?> PHP 文件的默认文件扩展名是 ".php"。 PHP 文件通常包含 HTML 标签和一些 PHP 脚本代码。 PHP 阅读全文
posted @ 2019-01-12 23:48 凯撒鸡肉卷 阅读(118) 评论(0) 推荐(0)
摘要: 常用正则表达式 一、校验数字的表达式 数字:^[0-9]*$ n位的数字:^\d{n}$ 至少n位的数字:^\d{n,}$ m-n位的数字:^\d{m,n}$ 零和非零开头的数字:^(0|[1-9][0-9]*)$ 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(\.[0-9]{1, 阅读全文
posted @ 2019-01-12 01:35 凯撒鸡肉卷 阅读(118) 评论(0) 推荐(0)
摘要: 使用 ? 和 * 通配符来查找硬盘上的文件。? 通配符匹配文件名中的 0 个或 1 个字符,而 * 通配符匹配零个或多个字符。像 data(\w)?\.dat 这样的模式将查找下列文件: 使用 * 字符代替 ? 字符扩大了找到的文件的数量。data.*\.dat 匹配下列所有文件: 尽管这种搜索方法 阅读全文
posted @ 2019-01-12 01:34 凯撒鸡肉卷 阅读(338) 评论(0) 推荐(0)
摘要: 原文地址:https://www.statmethods.net/advgraphs/parameters.html You can customize many features of your graphs (fonts, colors, axes, titles) through graphi 阅读全文
posted @ 2019-01-08 20:08 凯撒鸡肉卷 阅读(331) 评论(0) 推荐(0)
摘要: 原文地址:http://scott.fortmann-roe.com/docs/BiasVariance.html When we discuss prediction models, prediction errors can be decomposed into two main subcomp 阅读全文
posted @ 2019-01-08 20:06 凯撒鸡肉卷 阅读(228) 评论(0) 推荐(0)
摘要: 原文地址:https://www.r-bloggers.com/r-function-of-the-day-cut-2/ The R Function of the Day series will focus on describing in plain language how certain R 阅读全文
posted @ 2019-01-08 20:03 凯撒鸡肉卷 阅读(242) 评论(0) 推荐(0)
摘要: 原文地址:https://seananderson.ca/2013/10/19/reshape/ An Introduction to reshape2 reshape2 is an R package written by Hadley Wickham that makes it easy to 阅读全文
posted @ 2019-01-08 20:01 凯撒鸡肉卷 阅读(295) 评论(0) 推荐(0)
摘要: ajax:异步请求, 一定会有URL,请求方法,可能会有数据。 一般用json https://movie.douban.com/j/chart/top_list?type=11&interval_id=100%3A90&action=&start=20&limit=20 Requests: 继承了 阅读全文
posted @ 2018-12-30 01:29 凯撒鸡肉卷 阅读(119) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页