运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <script src="https://cdn.plot.ly/plotly-latest.min.js"></script> <body> <h1>Using Plotly.js</h1> <p>Enter Equation:</p> <p><input id="equation" type="text" value="x * 2 + 17"></p> <p> <button onclick='plot("scatter")'>Scatter</button> <button onclick='plot("lines")'>Draw Line</button> </p> <div id="myPlot" style="width:100%;max-width:700px"></div> <script> function plot(type) { const exp = document.getElementById("equation").value; const xValues = []; const yValues = []; let mode = "lines"; if (type == "scatter") {mode = "markers"} // Generate values for (let x = 0; x <= 10; x += 1) { xValues.push(x); yValues.push(eval(exp)); } // Display using Plotly const data = [{x:xValues, y:yValues, mode:mode, type:"scatter"}]; const layout = {title: "y = " + exp}; Plotly.newPlot("myPlot", data, layout); } </script> </body> </html>