本文是个人对spmf中example1. mining frequent itemsets by using the apriori algorithm的学习.What is Apriori?Apriori is an algorithm for discovering frequent items...
分类:
其他好文 时间:
2014-10-20 17:00:15
阅读次数:
181
一、什么是ListBox?ListBox 是一个显示项集合的控件。一次可以显示 ListBox 中的多个项。ListBox继承自ItemsControl,可以使用Items或者ItemsSource设置其内容。二、在ListBox中显示数据我们可以通过两种方式在ListBox中显示:直接内嵌List...
分类:
其他好文 时间:
2014-10-19 21:11:31
阅读次数:
219
这里是一个可能有用的通过字典解析实现的小技巧: 交换字典的键和值。1 >>> a_dict = {'a': 1, 'b': 2, 'c': 3}2 >>> {value:key for key, value in a_dict.items()}3 {1: 'a', 2: 'b', 3: 'c'}
分类:
编程语言 时间:
2014-10-17 15:15:23
阅读次数:
1052
1.初始化控件 listView1.Items.Clear(); listView1.Columns.Clear(); ColumnHeader ch = new ColumnHeader(); ch.Width = 100; ch.Text = "终端"; listView1.Columns.Ad...
分类:
其他好文 时间:
2014-10-17 15:10:26
阅读次数:
205
//增加项或列(字段)ListView1.Clear;ListView1.Columns.Clear;ListView1.Columns.Add;ListView1.Columns.Add;ListView1.Columns.Add;ListView1.Columns.Items[0].Captio...
ListView1.Items 为标准 Tlistitems类ListView1.Items(1)赋值with ListView1.Items.Add dobeginCaption:=caption; //加入第一项SubItems.add(aaaaa); //加入后面数据SubItems.add(...
分类:
其他好文 时间:
2014-10-16 15:02:42
阅读次数:
230
var_window=newExt.Window({title:‘窗口‘,width:‘800‘,height:500,modal:true,//模态的后面的页面就不能点了frame:true,layout:‘fit‘,items:[...]});加上modal:true,这个配置项即可
分类:
Web程序 时间:
2014-10-15 16:36:11
阅读次数:
151
每天一个JavaScript实例-标量参数和数组参数的功能性区别
window.onload = function(){
var items = new Array('apple','orange','cherry','lime');
var sep = "*";
func(items,sep);
console.log(items);
console.log(sep);...
分类:
编程语言 时间:
2014-10-13 19:57:17
阅读次数:
211
本篇讲解Ext另一个重要的概念:布局。一般的容器类控件都是通过配置项items添加子控件的,这些子控件相对于父控件怎么定位呢,这里就要用到布局。 某些容器类控件,它本身默认就集成了一种布局方式,例如比较典型的是:Ext.container.Viewport 布局控件,它其实就是一个border布局的容器,还有Ext.form.Panel、Ext.tab.Panel等。本节我们系统的分析各种布局方式...
分类:
Web程序 时间:
2014-10-13 16:09:39
阅读次数:
334
本篇讲解选项卡控件。
一、基本选项卡
首先我们来定义一个基本的选项卡控件,其中每个Tab各有不同,Tab的正文内容可以有三种方式获取:
1.基本方式:通过定义html和items的方式。
2.读取其他html的信息:通过设置contentEl就可以获取其他html的信息为当前tab正文。
3.读取服务端数据:通过定义autoLoad异步方式获取服务端数据。
另外...
分类:
Web程序 时间:
2014-10-13 15:51:49
阅读次数:
388