Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dwblair committed Jan 5, 2020
1 parent e6e708f commit 8fbc26b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
Binary file added node_basic_2/plotting/example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 23 additions & 3 deletions node_basic_2/plotting/get.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,17 @@ var layout_temp = {
yaxis: {
range: [0, 8]
}, */
title:'Temp (C)'
title:'Temp (C)',
yaxis: {
title: {
text: 'Temp (C)',
}
},
xaxis: {
title: {
text: 'index',
}
}
};


Expand All @@ -67,8 +77,18 @@ var layout_pressure = {
range: [0, 8]
},
*/
title:'Pressure (mbar)'
};
title:'Pressure (mbar)',
yaxis: {
title: {
text: 'pressure (mbar)',
}
},
xaxis: {
title: {
text: 'index',
}
}
};

//console.log(xvals);
//console.log(temps);
Expand Down

0 comments on commit 8fbc26b

Please sign in to comment.