Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cors issue, inf_vis, frontend, #386

Merged
merged 5 commits into from
Nov 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions raspberrypi /intropage/css/bootstrap.min.css

This file was deleted.

6 changes: 0 additions & 6 deletions raspberrypi /productpage/css/bootstrap.min.css

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -240,15 +240,15 @@ function int_ml_01_iris_data(){
function colorClass(class_cat) {
if (class_cat==0)
{
return "#440154";
return "#ffbe0b";
}
else if (class_cat==1)
{
return "#21918c";
return "#ff006e";
}
else
{
return "#fde725";
return "#8338ec";
}

}
Expand Down Expand Up @@ -461,7 +461,7 @@ var rects_class1 = svg.selectAll("hey")
.duration(2000)
.attr("width", d=> d[1][0] - d[0][0])
.attr("height", d=> d[1][1] - d[0][1])
.attr("fill", "#440154")
.attr("fill", "#ffbe0b")
.attr("opacity", 0.2);


Expand All @@ -486,7 +486,7 @@ var rects_class2 = svg.selectAll("hey")
.duration(2000)
.attr("width", d=> d[1][0] - d[0][0])
.attr("height", d=> d[1][1] - d[0][1])
.attr("fill", "#21918c")
.attr("fill", "#ff006e")
.attr("opacity", 0.2);

var data_class3 =
Expand All @@ -508,7 +508,7 @@ var rects_class3 = svg.selectAll("hey")
.duration(2000)
.attr("width", d=> d[1][0] - d[0][0])
.attr("height", d=> d[1][1] - d[0][1])
.attr("fill", "#fde725")
.attr("fill", "#8338ec")
.attr("opacity", 0.2);


Expand Down
Loading