本文整理汇总了TypeScript中plywood.AttributeInfo类的典型用法代码示例。如果您正苦于以下问题:TypeScript AttributeInfo类的具体用法?TypeScript AttributeInfo怎么用?TypeScript AttributeInfo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AttributeInfo类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: deduceAttributes
/**
* This function tries to deduce the structure of the dataSource based on the dimensions and measures defined within.
* It should only be used when for some reason introspection if not available.
* @param dataSource
* @returns {Attributes}
*/
function deduceAttributes(dataSource: DataSource): Attributes {
var attributeJSs: AttributeJSs = [];
dataSource.dimensions.forEach((dimension) => {
// ToDo: fix this.
attributeJSs.push({ name: dimension.name, type: 'STRING' });
});
dataSource.measures.forEach((measure) => {
var expression = measure.expression;
var references = getReferences(expression);
var countDistinctReferences = getCountDistinctReferences(expression);
for (var reference of references) {
if (reference === 'main') continue;
if (countDistinctReferences.indexOf(reference) !== -1) {
attributeJSs.push({ name: reference, special: 'unique' });
} else {
attributeJSs.push({ name: reference, type: 'NUMBER' });
}
}
});
var attributes = AttributeInfo.fromJSs(attributeJSs);
if (dataSource.options['attributeOverrides']) {
attributes = AttributeInfo.applyOverrides(attributes, dataSource.options['attributeOverrides']);
}
return attributes;
}
开发者ID:fortressll87,项目名称:implydata-pivot,代码行数:35,代码来源:executor.ts
示例2: it
it('adds new dimensions', () => {
var columns: any = [
{ "name": "__time", "type": "TIME" },
{ "name": "added", "makerAction": { "action": "sum", "expression": { "name": "added", "op": "ref" }}, "type": "NUMBER", "unsplitable": true },
{ "name": "count", "makerAction": { "action": "count"}, "type": "NUMBER", "unsplitable": true },
{ "name": "delta_hist", "special": "histogram", "type": "NUMBER" },
{ "name": "page", "type": "STRING" },
{ "name": "page_unique", "special": "unique", "type": "STRING" }
];
var dataCube1 = dataCube.addAttributes(AttributeInfo.fromJSs(columns));
expect(dataCube1.toJS().dimensions).to.deep.equal([
{
"kind": "time",
"name": "__time",
"title": "Time",
"formula": "$__time"
},
{
"kind": "string",
"name": "page",
"title": "Page",
"formula": "$page"
}
]);
columns.push({ "name": "channel", "type": "STRING" });
var dataCube2 = dataCube1.addAttributes(AttributeInfo.fromJSs(columns));
expect(dataCube2.toJS().dimensions).to.deep.equal([
{
"kind": "time",
"name": "__time",
"title": "Time",
"formula": "$__time"
},
{
"kind": "string",
"name": "page",
"title": "Page",
"formula": "$page"
},
{
"kind": "string",
"name": "channel",
"title": "Channel",
"formula": "$channel"
}
]);
});
开发者ID:djfwan,项目名称:pivot,代码行数:52,代码来源:data-cube.mocha.ts
示例3: it
it('works with max', () => {
var attribute = AttributeInfo.fromJS({
"name": "unique_page",
"special": "unique",
"type": "STRING"
});
var measures = Measure.measuresFromAttributeInfo(attribute).map((m => m.toJS()));
expect(measures).to.deep.equal([
{
"expression": {
"action": {
"action": "countDistinct",
"expression": {
"name": "unique_page",
"op": "ref"
}
},
"expression": {
"name": "main",
"op": "ref"
},
"op": "chain"
},
"name": "unique_page",
"title": "Unique Page"
}
]);
});
开发者ID:coconutpalm,项目名称:pivot,代码行数:28,代码来源:measure.mocha.ts
示例4: it
it('works with histogram', () => {
var attribute = AttributeInfo.fromJS({
"name": "delta_hist",
"special": "histogram",
"type": "NUMBER"
});
var measures = Measure.measuresFromAttributeInfo(attribute).map((m => m.toJS()));
expect(measures).to.deep.equal([]);
});
开发者ID:codeaudit,项目名称:pivot,代码行数:9,代码来源:measure.mocha.ts
示例5: externalFactory
export function externalFactory(dataSource: DataSource, druidRequester: Requester.PlywoodRequester<any>, timeout: number, introspectionStrategy: string): Q.Promise<External> {
var countDistinctReferences: string[] = [];
if (dataSource.measures) {
countDistinctReferences = [].concat.apply([], dataSource.measures.toArray().map((measure) => {
return getCountDistinctReferences(measure.expression);
}));
}
var context = {
timeout
};
if (dataSource.introspection === 'none') {
return Q(new DruidExternal({
suppress: true,
dataSource: dataSource.source,
timeAttribute: dataSource.timeAttribute.name,
customAggregations: dataSource.options.customAggregations,
attributes: AttributeInfo.override(deduceAttributes(dataSource), dataSource.attributeOverrides),
introspectionStrategy,
filter: dataSource.subsetFilter,
context,
requester: druidRequester
}));
} else {
var introspectedExternalPromise = new DruidExternal({
suppress: true,
dataSource: dataSource.source,
timeAttribute: dataSource.timeAttribute.name,
attributeOverrides: dataSource.attributeOverrides,
customAggregations: dataSource.options.customAggregations,
introspectionStrategy,
filter: dataSource.subsetFilter,
context,
requester: druidRequester
}).introspect();
if (!countDistinctReferences) {
return introspectedExternalPromise;
}
return introspectedExternalPromise.then((introspectedExternal) => {
var attributes = introspectedExternal.attributes;
for (var attribute of attributes) {
// This is a metric that should really be a HLL
if (attribute.type === 'NUMBER' && countDistinctReferences.indexOf(attribute.name) !== -1) {
introspectedExternal = introspectedExternal.updateAttribute(AttributeInfo.fromJS({
name: attribute.name,
special: 'unique'
}));
}
}
return introspectedExternal;
});
}
}
开发者ID:coconutpalm,项目名称:pivot,代码行数:56,代码来源:executor.ts
示例6: deduceAttributes
/**
* This function tries to deduce the structure of the dataSource based on the dimensions and measures defined within.
* It should only be used when, for some reason, introspection if not available.
* @param dataSource
* @returns {Attributes}
*/
function deduceAttributes(dataSource: DataSource): Attributes {
var attributeJSs: AttributeJSs = [];
var timeAttribute = dataSource.timeAttribute;
if (timeAttribute) {
attributeJSs.push({ name: timeAttribute.name, type: 'TIME' });
}
dataSource.dimensions.forEach((dimension) => {
var expression = dimension.expression;
if (expression.equals(timeAttribute)) return;
var references = getReferences(expression);
for (var reference of references) {
if (reference === 'main') continue;
attributeJSs.push({ name: reference, type: 'STRING' });
}
});
dataSource.measures.forEach((measure) => {
var expression = measure.expression;
var references = getReferences(expression);
var countDistinctReferences = getCountDistinctReferences(expression);
for (var reference of references) {
if (reference === 'main') continue;
if (countDistinctReferences.indexOf(reference) !== -1) {
attributeJSs.push({ name: reference, special: 'unique' });
} else {
attributeJSs.push({ name: reference, type: 'NUMBER' });
}
}
});
var attributes = AttributeInfo.fromJSs(attributeJSs);
if (dataSource.attributeOverrides.length) {
attributes = AttributeInfo.override(attributes, dataSource.attributeOverrides);
}
return attributes;
}
开发者ID:coconutpalm,项目名称:pivot,代码行数:45,代码来源:executor.ts
示例7:
return introspectedExternalPromise.then((introspectedExternal) => {
var attributes = introspectedExternal.attributes;
for (var attribute of attributes) {
// This is a metric that should really be a HLL
if (attribute.type === 'NUMBER' && countDistinctReferences.indexOf(attribute.name) !== -1) {
introspectedExternal = introspectedExternal.updateAttribute(AttributeInfo.fromJS({
name: attribute.name,
special: 'unique'
}));
}
}
return introspectedExternal;
});
开发者ID:coconutpalm,项目名称:pivot,代码行数:13,代码来源:executor.ts
示例8: it
it('works with unique', () => {
var attribute = AttributeInfo.fromJS({
"name": "unique_page",
"special": "unique",
"type": "STRING"
});
var measures = Measure.measuresFromAttributeInfo(attribute).map((m => m.toJS()));
expect(measures).to.deep.equal([
{
"name": "unique_page",
"title": "Unique Page",
"formula": "$main.countDistinct($unique_page)"
}
]);
});
开发者ID:djfwan,项目名称:pivot,代码行数:15,代码来源:measure.mocha.ts
注:本文中的plywood.AttributeInfo类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论