Difference between revisions of "Laboratory"


 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<html>
 
<script src="https://d3js.org/d3.v5.min.js"></script>
 
  
chart = {
+
'''Laboratory''' is a platform for my experiments. At that moment, these experiments are mostly related to Supply Chain Mapping by using SVG and they are planned to create a user interface for SCOM dashboard.
  const svg = d3.select(DOM.svg(width, height));
 
  
  const g = svg.append("g")
+
* [[BIPOLAR]]
    .selectAll("g")
+
** [[SCOM Templates]]
    .data(bins)
+
** [[SCOM Examples]]
    .enter().append("g");
+
** [[File:1.txt]]
 +
** [[File:test-file.txt]]
  
  g.append("path")
+
Laboratory is a virtual platform for my experiments. Lab includes fundamental science tools for a modern researcher.
      .attr("stroke", "currentColor")
 
      .attr("d", d => `
 
        M${x((d.x0 + d.x1) / 2)},${y(d.range[1])}
 
        V${y(d.range[0])}
 
      `);
 
  
  g.append("path")
+
<hr>
      .attr("fill", "#ddd")
 
      .attr("d", d => `
 
        M${x(d.x0) + 1},${y(d.quartiles[2])}
 
        H${x(d.x1)}
 
        V${y(d.quartiles[0])}
 
        H${x(d.x0) + 1}
 
        Z
 
      `);
 
  
  g.append("path")
+
[[Writing with technology]]
      .attr("stroke", "currentColor")
 
      .attr("stroke-width", 2)
 
      .attr("d", d => `
 
        M${x(d.x0) + 1},${y(d.quartiles[1])}
 
        H${x(d.x1)}
 
      `);
 
  
  g.append("g")
+
===ACM===
      .attr("fill", "currentColor")
+
ACM has several tools to publish a paper or an article in ACM publications. I am using ACM citation style for draft version of any.
      .attr("fill-opacity", 0.2)
 
      .attr("stroke", "none")
 
      .attr("transform", d => `translate(${x((d.x0 + d.x1) / 2)},0)`)
 
    .selectAll("circle")
 
    .data(d => d.outliers)
 
    .enter().append("circle")
 
      .attr("r", 2)
 
      .attr("cx", () => (Math.random() - 0.5) * 4)
 
      .attr("cy", d => y(d.y));
 
  
  svg.append("g")
+
* [https://www.acm.org/publications/authors/reference-formatting Citation Style and Reference Formats]
      .call(xAxis);
+
* [https://www.acm.org/publications/authors/information-for-authors Information for Authors]
 +
* [https://www.overleaf.com/gallery/tagged/acm-official Official Master Templates]
  
  svg.append("g")
+
===Must===
      .call(yAxis);
+
* [https://figshare.com/account/home Figshare]
  
  return svg.node();
+
===Wikibooks===
}
+
* [https://en.wikibooks.org/wiki/Algorithms Algorithms]
 +
* [https://en.wikibooks.org/wiki/Haskell Haskell]
 +
* [https://en.wikibooks.org/wiki/LaTeX LaTeX]
 +
* [https://en.wikibooks.org/wiki/Non-Programmer%27s_Tutorial_for_Python_2.6 Non-Programmer's Tutorial for Python 2.6]
 +
* [https://en.wikibooks.org/wiki/XForms XForms]
 +
* [https://en.wikibooks.org/wiki/XML_-_Managing_Data_Exchange XML: Managing Data Exchange]
  
 +
Coding
 +
* [http://julialang.org/ Julia]
 +
* [https://www.python.org/ Python]
 +
* [http://www.r-project.org/ R]
  
 +
Standards
 +
* [http://www.w3.org/Graphics/SVG/ SVG]
 +
* [http://www.w3.org/standards/xml/ XML]
 +
* [http://web.chemdoodle.com/ ChemDoodle Web Components]
  
</html>
+
Visualization
 +
* [http://d3js.org/ D3]
 +
* [http://www.gnuplot.info/ Gnuplot]
  
 +
Writing
 +
* [http://www.methods.co.nz/asciidoc/ AsciiDoc]
 +
* [http://www.latex-project.org/ LaTeX]
 +
* [http://daringfireball.net/projects/markdown/ Markdown]
 +
* [http://johnmacfarlane.net/pandoc/ Pandoc]
 +
* [http://www.literatureandlatte.com/scrivener.php Scrivener]
  
 
+
Simulation
 
+
* [http://www.anylogic.com/ Anylogic]
 
+
* [http://simpy.readthedocs.org/ Simpy]
 
 
 
 
 
 
{{Subnav-research}}
 
 
 
'''Laboratory''' is a platform for my experiments. At that moment, these experiments are mostly related to Supply Chain Mapping by using SVG and they are planned to create a user interface for SCOM dashboard. Please see [[BIPOLAR]].
 
 
 
* [[SCOM Templates]]
 
* [[SCOM Examples]]
 
 
 
* [[File:1.txt]]
 
* [[File:test-file.txt]]
 

Latest revision as of 11:25, 22 September 2019


Laboratory is a platform for my experiments. At that moment, these experiments are mostly related to Supply Chain Mapping by using SVG and they are planned to create a user interface for SCOM dashboard.

Laboratory is a virtual platform for my experiments. Lab includes fundamental science tools for a modern researcher.


Writing with technology

ACM

ACM has several tools to publish a paper or an article in ACM publications. I am using ACM citation style for draft version of any.

Must

Wikibooks

Coding

Standards

Visualization

Writing

Simulation