以下是我在Javascript中的代码:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Dygraph</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dygraph/1.1.1/dygraph-combined.js">
</script>
</head>
<body>
<div id="graphdiv"></div>
<script type="text/javascript">
g = new Dygraph(
// containing div
document.getElementById("graphdiv"),
// CSV or path to a CSV file.
"/home/khlim/Desktop/WeatherData/NewYork.csv", // path to CSV file
{} // options
);
</script>
</body>
我有一个名为NewYork.csv的文件,它位于我的linux机器的桌面上。当我尝试运行脚本时,没有任何反应。我的代码有问题吗?
以下是NewYork.csv的格式
DATE TMAX
20150101 39
20150102 56
20150103 50
20150104 139
20150105 100
总共包含50,000行。
答案 0 :(得分:0)
你有两个问题: