On this page:
2.1 An Example
2.2 Loading Modules in the Science Collection
2.3 Graphics Modules
Version: 4.1.1

2 Using the Science Collection

    2.1 An Example

    2.2 Loading Modules in the Science Collection

    2.3 Graphics Modules

This chapter describes how to use the PLT Scheme Science Collection and introduces its conventions.

2.1 An Example

The following code demonstrates the use of the PLT Scheme Science Collection by plotting a histogram of 10,000 trials of rolling two dice.

  #lang scheme

  (require (planet williams/science/random-source))

  (require (planet williams/science/discrete-histogram-with-graphics))

  

  (let ((s (make-random-source))

        (h (make-discrete-histogram)))

    (random-source-randomize! s)

    (do ((i 0 (+ i 1)))

        ((= i 10000) (void))

      (let ((die1 (+ (random-uniform-int 6) 1))

            (die2 (+ (random-uniform-int 6) 1)))

        (discrete-histogram-increment! h (+ die1 die2))))

    (discrete-histogram-plot h "Histogram of the Sum of Two Dice"))

The following figure shows the resulting histogram:

2.2 Loading Modules in the Science Collection

The PLT Science Collection is a collection of modules each of which provides a specific area of functionality in numerical computing. Typical user code will only load the modules it requires using the require special form.

For example the code in Section 2.1 requires two of the modules from the science collection: random-source and discrete-histogram-with-graphics. This is specified using the following forms:

  (require (planet williams/science/random-source))

  (require (planet williams/science/discrete-histogram-with-graphics))

Each of these statements will load the corresponding module from the science collection – assuming they are not already loaded – and make it available for use. PLT Scheme will automatically download and install the science collection from the PLaneT server as needed.

There are two sub-collections of the science collection. These are:

Loading modules from either of these sub-collections requires that the sub-collection be specified when using the require special form. For example, to load the module for the Gaussian random distribution, the following is used:

  (require (planet williams/science/random-distributions/gaussian))

As a shortcut, the entire science collection can be loaded using one of the following, depending on whether or not the graphic routines are needed:

  (require (planet williams/science/science))

  (require (planet williams/science/science-with-graphics))

2.3 Graphics Modules

Support for the graphical functions within the modules of the science collection has been separated from the fundamental numerical computing functionality of the modules. This facilitates the use of the numerical computing functions in non-graphical environment or when alternative graphical presentations are desired.

By convention, when graphical functions are included for a specific numerical computing area, there are three modules that provide the functions:

This might be used in implementing higher-level graphical interfaces.

In general, either the module or module-with-grahics module is loaded. However, the module-graphics module can be loaded when only the graphical routines are being referenced.

For example, the example code in Section 2.1 requires both the basic numerical computing and graphical functions for the discrete histogram functionality. Therefore, it loads the discrete-histogram-with-graphics module using the form:

  (require (planet williams/science/discrete-histogram-with-graphics))

The graphical routines are implemented using the plot collection (PLoT) provided with PLT Scheme. The plot collection is, in turn, implemented using the PLT Graphics Toolkit MrED. Both of these modules are required to be present to use the graphical functions.