當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Dataset.fromJS方法代碼示例

本文整理匯總了TypeScript中plywood.Dataset.fromJS方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Dataset.fromJS方法的具體用法?TypeScript Dataset.fromJS怎麽用?TypeScript Dataset.fromJS使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在plywood.Dataset的用法示例。


在下文中一共展示了Dataset.fromJS方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: switch

        (data: Dataset) => {
          var outputStr: string;
          switch (output) {
            case 'json':
              outputStr = JSON.stringify(data, null, 2);
              break;

            case 'csv':
              data = Dataset.fromJS(data.toJS()); // Temp hack
              outputStr = data.toCSV();
              break;

            case 'tsv':
              data = Dataset.fromJS(data.toJS()); // Temp hack
              outputStr = data.toTSV();
              break;

            case 'flat':
              data = Dataset.fromJS(data.toJS()); // Temp hack
              outputStr = JSON.stringify(data.flatten(), null, 2);
              break;

            default:
              outputStr = 'Unknown output type';
              break;
          }
          console.log(outputStr);
        },
開發者ID:dkarpman,項目名稱:plyql,代碼行數:28,代碼來源:cli.ts

示例2: basicExecutorFactory

 return AppSettingsMock.wikiOnly().attachExecutors(() => {
   return basicExecutorFactory({
     datasets: {
       main: Dataset.fromJS(SMALL_WIKI_DATA)
     }
   });
 });
開發者ID:WuQic,項目名稱:pivot,代碼行數:7,代碼來源:app-settings.mock.ts

示例3: it

 it('encloses set/string in brackets appropriately', () => {
   var ds = Dataset.fromJS([
     { y: ["dear", "john"] },
     { y: ["from", "peter"] }
   ]);
   expect(datasetToFileString(ds, 'csv').indexOf("\"[dear,john\"]"), 'csv').to.not.equal(-1);
   expect(datasetToFileString(ds, 'tsv').indexOf("[dear,john]"), 'tsv').to.not.equal(-1);
 });
開發者ID:RaviNK,項目名稱:pivot,代碼行數:8,代碼來源:download.mocha.ts

示例4:

        (rawData) => {
          logger.log(`Loaded file ${filePath} (rows = ${rawData.length})`);
          var dataset = Dataset.fromJS(rawData).hide();

          if (this.subsetFilter) {
            dataset = dataset.filter(this.subsetFilter.getFn(), {});
          }

          this.dataset = dataset;
          this.onDatasetChange(dataset);
        },
開發者ID:RaviNK,項目名稱:pivot,代碼行數:11,代碼來源:file-manager.ts

示例5: basicExecutorFactory

          .then((rawData) => {
            var dataset = Dataset.fromJS(rawData).hide();

            if (dataSource.subsetFilter) {
              dataset = dataset.filter(dataSource.subsetFilter.getFn(), {});
            }

            var executor = basicExecutorFactory({
              datasets: { main: dataset }
            });

            return dataSource.addAttributes(dataset.attributes).attachExecutor(executor);
          });
開發者ID:07033320a,項目名稱:pivot,代碼行數:13,代碼來源:data-source-loader.ts

示例6: getVariablesFlatDataset

export function getVariablesFlatDataset() {
  var attributes: Attributes = [];
  var flatDatum: Lookup<string> = {};
  for (var variablesDatum of variablesData) {
    var name = variablesDatum['VARIABLE_NAME'];
    var value: any = variablesDatum['VARIABLE_VALUE'];
    var type: PlyType = 'STRING';

    // Do this crazy MySQL conversion (I am not making this up)
    if (value === 'ON' || value === 'OFF') {
      value = value === 'ON';
      type = 'BOOLEAN';
    }

    flatDatum[name] = value;
    attributes.push(new AttributeInfo({ name, type }));
  }
  return Dataset.fromJS([flatDatum]);
}
開發者ID:waltonseymour,項目名稱:plyql,代碼行數:19,代碼來源:variables.ts

示例7:

 (res) => {
   return Dataset.fromJS(res.result);
 },
開發者ID:djfwan,項目名稱:pivot,代碼行數:3,代碼來源:ajax.ts

示例8: basicExecutorFactory

 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import { $, Executor, Dataset, basicExecutorFactory } from 'plywood';
import { DataCube, DataCubeJS } from './data-cube';

var executor = basicExecutorFactory({
  datasets: {
    wiki: Dataset.fromJS([]),
    twitter: Dataset.fromJS([])
  }
});

export class DataCubeMock {
  public static get WIKI_JS(): DataCubeJS {
    return {
      name: 'wiki',
      title: 'Wiki',
      description: 'Wiki description',
      clusterName: 'druid',
      source: 'wiki',
      introspection: 'none',
      attributes: [
        { name: 'time', type: 'TIME' },
開發者ID:djfwan,項目名稱:pivot,代碼行數:31,代碼來源:data-cube.mock.ts

示例9:

 (dataJS) => {
   return Dataset.fromJS(dataJS);
 },
開發者ID:07033320a,項目名稱:pivot,代碼行數:3,代碼來源:ajax.ts


注:本文中的plywood.Dataset.fromJS方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。