码迷,mamicode.com
首页 >  
搜索关键字:series    ( 1758个结果
influxdb 命令
写入数据:curl -X POST -d '[{"name":"foo","columns":["val"],"points":[[23]]}]' 'http://localhost:8086/db/mydb/series?u=root&p=root'查询数据:curl -G 'http://loc...
分类:数据库   时间:2015-01-19 12:30:59    阅读次数:683
[DevExpress]图表开发工具类 ChartUtils
/// /// 基于.NET 3.5的Chart工具类;对应的DevExpress版本:12.1.7; /// public static class ChartUtilsV3 { /// /// 添加基本的Series ///...
分类:其他好文   时间:2015-01-17 19:22:58    阅读次数:265
pandas 基础
要利用python进行数据分析,pandas必不可少。 作为python数据分析利器,pandas以快速,高效著称。 为了更加方便地处理数据,pandas创造了自己的数据类型:Series,DataFrame。 一般使用pandas要进行如下import: import pandas as pd Series  可以认为series类型的包含着一列数据。 In [4]: ...
分类:其他好文   时间:2015-01-17 18:08:04    阅读次数:813
hdu3306--Another kind of Fibonacci(矩阵快速幂)
Another kind of Fibonacci Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u Submit Status Description As we all known , the Fibonacci series : F(0) = 1, F(1)...
分类:其他好文   时间:2015-01-17 16:33:50    阅读次数:149
poj3233Matrix Power Series(矩阵快速幂,两种写法)
Matrix Power Series Time Limit:3000MS     Memory Limit:131072KB     64bit IO Format:%I64d & %I64u Submit Status Description Given a n × n matrix A and a positive integer k, find the ...
分类:其他好文   时间:2015-01-16 22:27:50    阅读次数:319
Kaggle竞赛题目之——Digit Recognizer
Classify handwritten digits using the famous MNIST data This competition is the first in a series of tutorial competitions designed to introduce people to Machine Learning. The goal in this comp...
分类:其他好文   时间:2015-01-16 13:07:42    阅读次数:499
chartControl 饼状图小Demo
Short DescriptionThePie Chartis represented by thePie3DSeriesViewobject, which belongs toPie, Doughnut and Funnel Series Views. This view is useful wh...
分类:其他好文   时间:2015-01-15 23:35:55    阅读次数:331
DevExpress中ChartControl柱状图(Bar)用法
我的数据代码如下:1234567891011121314151617181920212223chartControl1.Series.Clear();// 柱状图里的第一个柱Series Series1 =new Series("当年数据", ViewType.Bar);Series1.DataSo...
分类:其他好文   时间:2015-01-15 21:43:56    阅读次数:584
DevExpress控件之:ChartControl 动态绑定数据
private void BindData(ViewType vt) { chartControl1.Series.Clear(); //Series series1 = new Series("日志统计", ViewType.RadarAr...
分类:其他好文   时间:2015-01-15 20:03:01    阅读次数:151
Hightcharts动态创建series,采用options预定义方式
动态创建Series代码如下: Highcharts Example 对series操作的一些小说明(1)首先、无论是highcharts还是highstock,chart.options.series...
分类:其他好文   时间:2015-01-15 20:00:11    阅读次数:224
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!