about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Kabui2022-03-08 22:36:01 +0300
committerBonfaceKilz2022-03-14 19:55:33 +0300
commit53adc9c998cf2ae91382035a3a8b54677bcc1cf8 (patch)
treef022bdbbea555bc32ec2090dfa845b8ed0b98feb
parentf330e0912123cb8b9f265754a6e24afc022d0608 (diff)
downloadgenenetwork2-53adc9c998cf2ae91382035a3a8b54677bcc1cf8.tar.gz
add scree plot data
-rw-r--r--wqflask/wqflask/templates/pca_scree_plot.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/wqflask/wqflask/templates/pca_scree_plot.html b/wqflask/wqflask/templates/pca_scree_plot.html
index 989cf103..5b8ab09e 100644
--- a/wqflask/wqflask/templates/pca_scree_plot.html
+++ b/wqflask/wqflask/templates/pca_scree_plot.html
@@ -54,6 +54,21 @@ const layout = {
     },
 
 }
+
+const data = [{
+    x: x_coord,
+    y: y_coord,
+    marker: {
+
+        color: 'rgb(17, 157, 255)',
+        size: 5,
+        line: {
+            color: 'rgb(255, 0, 0)',
+            width: 3
+        }
+
+    }
+}]
 </script>
 
 </html>