-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
continue lines off the edge toward invalid log values
- Loading branch information
1 parent
2fde3dc
commit 68b489d
Showing
5 changed files
with
79 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"data": [{ | ||
"x": [-1, 1.5, 2, 0, 1, 3, 4, 5, 6, 1, -1, -1, 3, 3, 0, 7, 7, -1, -1], | ||
"y": [-1, 1.5, 1, -1, -1, 1, 1, 0, 2, 2, 0, 2, 3, 4, 5, 6, -2, -2, -1], | ||
"mode": "markers+lines", "fill": "toself" | ||
}, { | ||
"x": [-1, 1.5, 2, 0, 1, 3, 4, 5, 6, 1, -1, -1, 3, 3, 0, 7, 7, -1, -1], | ||
"y": [-1, 1.5, 1, -1, -1, 1, 1, 0, 2, 2, 0, 2, 3, 4, 5, 6, -2, -2, -1], | ||
"mode": "markers+lines", "fill": "toself", "xaxis": "x2" | ||
}, { | ||
"x": [-1, 1.5, 2, 0, 1, 3, 4, 5, 6, 1, -1, -1, 3, 3, 0, 7, 7, -1, -1], | ||
"y": [-1, 1.5, 1, -1, -1, 1, 1, 0, 2, 2, 0, 2, 3, 4, 5, 6, -2, -2, -1], | ||
"mode": "markers+lines", "fill": "toself", "yaxis": "y2" | ||
}, { | ||
"x": [-1, 1.5, 2, 0, 1, 3, 4, 5, 6, 1, -1, -1, 3, 3, 0, 7, 7, -1, -1], | ||
"y": [-1, 1.5, 1, -1, -1, 1, 1, 0, 2, 2, 0, 2, 3, 4, 5, 6, -2, -2, -1], | ||
"mode": "markers+lines", "fill": "toself", "xaxis": "x2", "yaxis": "y2" | ||
}, { | ||
"x": [0.01, 0.1], "y": [0.01, 0.1], | ||
"mode": "markers", "xaxis": "x2", "yaxis": "y2" | ||
}], | ||
"layout": { | ||
"width": 800, | ||
"height": 600, | ||
"xaxis": {"title": "linear"}, | ||
"xaxis2": {"title": "log", "type": "log"}, | ||
"yaxis": {"title": "linear"}, | ||
"yaxis2": {"title": "log", "type": "log"}, | ||
"grid": {"columns": 2, "rows": 2}, | ||
"showlegend": false, | ||
"title": "Lines to invalid log values" | ||
} | ||
} |