Typescript環境でplotlyを用いてデータを可視化する
D3.jsを使いやすくした可視化ライブラリに、plotly.jsというものがあります。
日本ではPythonやR方面からの利用が多いようですが、そもそものjsから利用している人があまりいないようなので、記事にしてみました。
plotlyはまだ型定義ファイルが配布されていないので、npm経由でのimportはせずに
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
と大本のhtmlでcdn経由で読み込んでしまうのが2017/07現在の最善策と思われます。
大本のhtmlでplotlyのソースを読み込んであげることで、
declare const Plotly: any;
として宣言してあげれば、問題なくts側からplotlyを操作できます。
以下は、angular2(実際はangular4ですが)でplotlyを使ったサンプルになります。
<div id="graph"></div>
import { Component, OnInit } from "@angular/core";
declare const Plotly: any;
@Component({
selector: "hoge",
templateUrl: "./hoge.component.html",
styleUrls: []
})
export class HogeComponent implements OnInit {
public plotly: any;
constructor() {
this.plotly = Plotly;
}
public ngOnInit(): void {
this.plotly.plot(
"graph",
[{
x: [10, 11, 12],
y: [1, 100, 1000]
}],
{
title: "Typescript & angular2 & plotly"
}
);
}
}
以上で、
のように、可視化することができました。ご参考まで。
Author And Source
この問題について(Typescript環境でplotlyを用いてデータを可視化する), 我々は、より多くの情報をここで見つけました https://qiita.com/soy-curd/items/5a45413142ad3184d604著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .