What is the Function Browser?

The Function Browser dialog is displayed when you select Function Browser from either the Tools or View menu. It contains all of Statistica's library methods.

There are numerous functions specific to Statistica, and generally only available in Statistica Visual Basic. These are extensions to the general Visual Basic language, such as probability functions, matrix functions, simple user input dialogs, etc. You can review these functions in the Function Browser, which is accessible via the SVB View  or Tools menus or by clicking the Function Browser toolbar button.

Shown below is a simple program that will "look up" the z value for p = .975.

Sub Main

Dim z As Double z=VNormal(.975,0,1) MsgBox "For p=.975, z=" & Str(z)

End Sub