The first and most commonly used example demonstrating the value of the BrailleR package to a blind user is the creation of a histogram.
x=rnorm(1000)
VI(hist(x))
A histogram of 1000 random values from a normal distribution
This is a histogram, with the title: Histogram of x
"x" is marked on the x-axis.
Tick marks for the x-axis are at: -2, 0, and 4
There are a total of 1000 elements for this variable.
Tick marks for the y-axis are at: 0, 50, 100, 150, and 200
It has 15 bins with equal widths, starting at -3.5 and ending at 4 .
The mids and counts for the bins are:
mid = -3.25 count = 1
mid = -2.75 count = 3
mid = -2.25 count = 17
mid = -1.75 count = 46
mid = -1.25 count = 82
mid = -0.75 count = 143
mid = -0.25 count = 189
mid = 0.25 count = 202
mid = 0.75 count = 141
mid = 1.25 count = 93
mid = 1.75 count = 52
mid = 2.25 count = 23
mid = 2.75 count = 4
mid = 3.25 count = 3
mid = 3.75 count = 1
The VI() command actually calls the VI.histogram() command as the hist() command creates an object of class “histogram”.
The VI() command has added to the impact of issuing the hist() command as the actual graphic is generated for the sighted audience. The blind student can read from the text description so that they can interpret the information that the histogram offers the sighted world.
The above example showed the standard implementation of the hist() function. The hist() function of the graphics package does not store the additional arguments that improve the visual attractiveness. The solution (perhaps temporary) is to mask the original function with one included in the BrailleR package that calls the graphics package function, and then adds extra detail for any added plotting arguments.
This is best illustrated using the example included in the BrailleR::hist() function.
example(hist)
hist> x=rnorm(1000)
hist> # the stamdard hist function returns
hist> MyHist=graphics::hist(x, xlab="random normal values", main="Example histogram (graphics package)")
hist> #dev.off()
hist> MyHist
$breaks
[1] -3.0 -2.5 -2.0 -1.5 -1.0 -0.5 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5
[15] 4.0
$counts
[1] 1 19 53 93 147 196 213 136 64 61 10 4 2 1
$density
[1] 0.002 0.038 0.106 0.186 0.294 0.392 0.426 0.272 0.128 0.122 0.020
[12] 0.008 0.004 0.002
$mids
[1] -2.75 -2.25 -1.75 -1.25 -0.75 -0.25 0.25 0.75 1.25 1.75 2.25
[12] 2.75 3.25 3.75
$xname
[1] "x"
$equidist
[1] TRUE
attr(,"class")
[1] "histogram"
hist> # while this version returns
hist> MyHist=hist(x, xlab="random normal values", main="Example histogram (BrailleR package)")
hist> #dev.off()
hist> MyHist
$breaks
[1] -3.0 -2.5 -2.0 -1.5 -1.0 -0.5 0.0 0.5 1.0 1.5 2.0 2.5 3.0 3.5
[15] 4.0
$counts
[1] 1 19 53 93 147 196 213 136 64 61 10 4 2 1
$density
[1] 0.002 0.038 0.106 0.186 0.294 0.392 0.426 0.272 0.128 0.122 0.020
[12] 0.008 0.004 0.002
$mids
[1] -2.75 -2.25 -1.75 -1.25 -0.75 -0.25 0.25 0.75 1.25 1.75 2.25
[12] 2.75 3.25 3.75
$xname
[1] "x"
$equidist
[1] TRUE
$main
[1] "Example histogram (BrailleR package)"
$xlab
[1] "random normal values"
$xaxp
[1] -3 4 7
$yaxp
[1] 0 200 4
attr(,"class")
[1] "histogram"
hist> # The VI() method then uses the extra information stored
hist> VI(MyHist)
This is a histogram, with the title: Example histogram (BrailleR package)
"random normal values" is marked on the x-axis.
Tick marks for the x-axis are at: -3, and 4
There are a total of 1000 elements for this variable.
Tick marks for the y-axis are at: 0, 50, 100, 150, and 200
It has 14 bins with equal widths, starting at -3 and ending at 4 .
The mids and counts for the bins are:
mid = -2.75 count = 1
mid = -2.25 count = 19
mid = -1.75 count = 53
mid = -1.25 count = 93
mid = -0.75 count = 147
mid = -0.25 count = 196
mid = 0.25 count = 213
mid = 0.75 count = 136
mid = 1.25 count = 64
mid = 1.75 count = 61
mid = 2.25 count = 10
mid = 2.75 count = 4
mid = 3.25 count = 2
mid = 3.75 count = 1
The VI() function is partially reliant on the use of the hist() function that is included in the BrailleR package. If a histogram is created using a command that directly links to the original hist() command found in the graphics package, then the VI() command’s output will not be as useful to the blind user. This mainly affects the presentation of the title and axis labels; it should not affect the details of the counts etc. within the histogram itself.
This behaviour could arise if the histogram is sought indirectly. If for example, a function offers (as a side effect) to create a histogram, the author of the function may have explicitly stated use of the hist() function from the graphics package using graphics::hist() instead of hist(). Use of graphics::hist() will bypass the BrailleR::hist() function that the VI() command needs. This should not create error messages.