Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/pkg/jupyterviz/examples/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 16.7.2022 mit Größe 475 B image not shown  

Quelle  02plotoptions.md   Sprache: unbekannt

 
Spracherkennung für: .md vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]


# Adding an options parameter

You can append a final parameter to the `Plot` command, a record
containing a set of options.  Here is an example of using that
options record to choose the visualization tool, title, and axis
labels.

```
Plot( [1..50], n -> Length( DivisorsInt( n ) ),
      rec(
          tool := "chartjs",
          title := "Number of divisors of some small integers",
          xaxis := "n",
          yaxis := "number of divisors of n"
      ) );
```


[ Dauer der Verarbeitung: 0.32 Sekunden  ]