Built with blockbuilder.org
This file contains hidden or 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
| FROM openjdk:8 | |
| RUN wget http://apache.claz.org/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.tar.gz | |
| RUN tar zxvf apache-maven-3.3.9-bin.tar.gz | |
| RUN chmod +x apache-maven-3.3.9/bin/mvn | |
| RUN export M2_HOME=$PWD/apache-maven-3.3.9 | |
| RUN export PATH=$PWD/apache-maven-3.3.9/bin:${PATH} | |
| RUN apt-get update | |
| RUN apt-get install -y software-properties-common |
This file contains hidden or 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
| license: mit |
This file contains hidden or 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
| license: mit |
This file contains hidden or 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
| license: mit |
This file contains hidden or 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
| [MASTER] | |
| # Specify a configuration file. | |
| #rcfile= | |
| # Python code to execute, usually for sys.path manipulation such as | |
| # pygtk.require(). | |
| #init-hook= | |
| # Profiled execution. |
This file contains hidden or 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
| var force = d3.layout.force() | |
| .charge(-150) | |
| .linkDistance(30) | |
| .size([width, height]); | |
| d3.json("assets/500nodes.json", function(error, graph) { | |
| if (error) throw error; | |
| // Task 2: | |
| // Connect the force layout to the nodes and links in our dataset |
This file contains hidden or 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
| alpha Alpha (transparency) of the plot – default is 1 (no transparency) | |
| color Color description for the line.1 | |
| label Label for the line – used when creating legends | |
| linestyle A line style symbol | |
| linewidth A positive integer indicating the width of the line | |
| marker A marker shape symbol or character | |
| markeredgecolor Color of the edge (a line) around the marker | |
| markeredgewidth Width of the edge (a line) around the marker | |
| markerfacecolor Face color of the marker | |
| markersize A positive integer indicating the size of the marker |
This file contains hidden or 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
| isnan 1 if nan element-by-element | |
| isinf 1 if inf element-by-element | |
| isfinite 1 if not inf and not nan element-by-element | |
| isposfin,isnegfin 1 for positive or negative inf element-by-element | |
| isreal 1 if not complex valued element-by-element | |
| iscomplex 1 if complex valued element-by-element | |
| isreal 1 if real valued element-by-element | |
| is_string_like 1 if argument is a string scalar | |
| is_numlike 1 if is a numeric type scalar | |
| isscalar 1 if scalar scalar |
This file contains hidden or 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
| <div class="circles-1"> | |
| </div> |
NewerOlder