运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <script src="https://cdn.plot.ly/plotly-latest.min.js"></script> <body> <div id="myPlot" style="width:100%;max-width:700px"></div> <script> let exp = "Math.cos(x)"; // Generate values const xValues = []; const yValues = []; for (let x = 0; x <= 10; x += 0.2) { yValues.push(eval(exp)); xValues.push(x); } // Display using Plotly const data = [{x:xValues, y:yValues, mode:"markers"}]; const layout = {title: "y = " + exp}; Plotly.newPlot("myPlot", data, layout); </script>