This example demostrates log scale visualziation across the x and y axes.
Note that x axis log scales are not permitted when the x axis is a date.
<!DOCTYPE html> | |
<html> | |
<head> | |
<script type="text/javascript" src="http://dygraphs.com/dygraph-combined-dev.js"></script> | |
</head> | |
<body> | |
<div id="div_g1" style="width:600px; height:300px;"></div> | |
<center> | |
<input id='ylog' type="button" value="y log scale" onclick="setLogScale('y', true)"> |
This example demostrates log scale visualziation across the x and y axes.
Note that x axis log scales are not permitted when the x axis is a date.
from __future__ import division | |
from collections import Counter | |
from functools import reduce | |
from itertools import permutations | |
from statistics import stdev | |
decks = [ | |
[+1, +1, +1, 0, 0, 0, 0, 0, -1, -1], | |
[+1, +1, +1, 0, 0, 0, 0, -1, -1], | |
[+1, +1, +1, 0, 0, 0, -1, -1], |
When you run npm run start, it reads package.json, specifically 'scripts' So npm run start seems to launch the 'start' script there. It runs server.js, which is server.ts, and you can tell because at the bottom it logs stuff.
Running works with launch.json
listed at the bottom. Remember to build first with Ctrl-Shift-B
!