上一页 1 ··· 165 166 167 168 169 170 171 172 173 ··· 308 下一页
摘要: # sorting examples using the mtcars datasetattach(mtcars)# sort by mpgnewdata <- mtcars[order(mpg),]# sort by mpg and cylnewdata <- mtcars[order(mpg, 阅读全文
posted @ 2015-01-28 15:09 emanlee 阅读(3476) 评论(0) 推荐(0) 编辑
摘要: 出现错误:Jan 23, 2015 4:19:21 PM org.apache.catalina.core.StandardWrapperValve invokeSEVERE: Servlet.service() for servlet [DisplayChart] in context with ... 阅读全文
posted @ 2015-01-23 17:20 emanlee 阅读(1126) 评论(0) 推荐(0) 编辑
摘要: 实例 定义和用法shape 属性与 coords 属性配合,可以规定区域的尺寸、形状和位置。详细解释:shape 属性用于定义图像映射中对鼠标敏感的区域的形状:圆形(circ 或 circle)多边形(poly 或 polygon)矩形(rect 或 rectangle)shape 属性的... 阅读全文
posted @ 2015-01-22 16:10 emanlee 阅读(954) 评论(0) 推荐(0) 编辑
摘要: HTML vertical text (Safari, Firefox, Chrome, and Opera).vText { -moz-transform: rotate(-90deg) translate(0, 100%); -moz-transform-origin: 0% 100%;... 阅读全文
posted @ 2015-01-22 15:25 emanlee 阅读(4936) 评论(0) 推荐(1) 编辑
摘要: CONVERT(expr USING transcoding_name)CONVERT(expr,type)类型必须用下列的类型:可用的类型 二进制,同带binary前缀的效果 : BINARY 字符型,可带参数 : CHAR() 日期 : DATE 时间: TIME 日期时间型 : D... 阅读全文
posted @ 2015-01-22 11:28 emanlee 阅读(911) 评论(0) 推荐(0) 编辑
摘要: mysql查询结果导出/输出/写入到文件方法一:直接执行命令:mysql> select count(1) fromtable into outfile'/tmp/test.xls';Query OK, 31 rows affected (0.00 sec)在目录/tmp/下会产生文件test.xl... 阅读全文
posted @ 2015-01-19 13:40 emanlee 阅读(121820) 评论(0) 推荐(4) 编辑
摘要: Solution 1: 修改1列 update student s, city c set s.city_name = c.name where s.city_code = c.code; Solution 2: 修改多个列 update a, b set a.title=b.title, a.na 阅读全文
posted @ 2015-01-18 17:16 emanlee 阅读(26627) 评论(0) 推荐(1) 编辑
摘要: 示例一,饼图,简单示例:导入jar,代码文件:运行结果:代码:import org.jfree.chart.ChartFactory;import org.jfree.chart.ChartFrame;import org.jfree.chart.JFreeChart;import org.jfre... 阅读全文
posted @ 2015-01-17 09:32 emanlee 阅读(3599) 评论(0) 推荐(0) 编辑
摘要: 方案一:修改虚拟内存,让虚拟内存的大小略微超过要复制的文件的大小。方案二:修改注册表,如下:注册表设置1单击开始,单击运行,在打开框中键入“REGEDIT“ ,然后单击“确定”。找到并单击下面的注册表子项:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Con... 阅读全文
posted @ 2015-01-09 15:05 emanlee 阅读(6353) 评论(0) 推荐(0) 编辑
摘要: 方案一: 大部分都建议将.NET程序编译的时候,目标平台设定为 x86。方案二:① 下载安装Microsoft Access Database Engine 2010 Redistributable(28MB),共有32bit(下载)和64bit(下载)两个版本,具体要安装哪个要看你的Office程... 阅读全文
posted @ 2015-01-09 13:53 emanlee 阅读(618) 评论(0) 推荐(0) 编辑
上一页 1 ··· 165 166 167 168 169 170 171 172 173 ··· 308 下一页