"Fossies" - the Fresh Open Source Software Archive 
Member "statist-1.4.2/doc/statistrc" (15 Dec 2009, 4218 Bytes) of package /linux/privat/old/statist-1.4.2.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 # This is a sample statistrc. Copy it to ~/.statistrc and adjust the values to
2 # your preferences.
3
4 # If you are using Windows, rename it from statistrc-sample.txt to
5 # statistrc.txt.
6
7 # If you are beginning to use statist, you probably will want it behaving
8 # verbosely. If you set the following variable to "no", some usage tips will
9 # not be printed.
10 verbose = yes
11
12 # For Linux only: Do you want a colorized output? [default = no]
13 color = yes
14
15 # Color scheme. The color names have the format <attribute><color>, where the
16 # attribute part of the name is optional, and might be "bright", "dim",
17 # "blink" or "underln"; and the colors might be "red", "yellow", "green",
18 # "blue", "cyan", "magenta", "white", or "black". Warning: "dim", "blink", and
19 # "underln" might not work as expected in some terminal emulators.
20
21 cl_error = brightred
22 cl_instructions = yellow
23 cl_header = brightwhite
24 cl_menu_separator = blue
25 cl_line_num = magenta
26
27 # What do you prefer, the built-in command to list files, or the system one?
28 use_system_ls = yes
29 system_ls_command = ls --color
30
31 # If you name all your data files *.dat, and all your labels files *.lbs, you
32 # might prefer this instead:
33 #system_ls_command = ls --color *.dat *.lbs
34
35 # String used to indicate missing values:
36 na_string = NA
37
38 # Character used to delimit columns (define it here only if you always use the
39 # same field delimiter, your data files have missing values, and these missing
40 # values are not indicated by any string):
41 #field_separator = ","
42
43 # If you prefer to use the "#%" string to indicate that the line contains
44 # the variable names, you should set this variable to "no":
45 #autodetect_header = yes
46
47 # Should statist try to detect what is the data file decimal delimiter and
48 # field separator? Or should it ask this information to you?
49 #ask_dec_sep = no
50
51 # If you have gnuplot installed, and want to see graphics [default: yes]:
52 #use_gnuplot = no
53
54 # If you want to add a string to the begin of all graphics titles:
55 #graphs_title_prefix = "My Study Title\n"
56
57 # Maximum number of rows to print in "Frequency table", "Compare means", and
58 # other analyses.
59 max_results = 200
60
61 # How many lines and columns does your screen usually have? Statist tries to
62 # determine these values when running under GNU/Linux. If while outputting the
63 # list of columns or the list of files in the current directory the layout is
64 # not OK, you can set the correct values here:
65 #screen_lines = 30
66 #screen_columns = 80
67
68 # Statist will use the value of "screen_columns" to format the output of both
69 # columns and file names, unless you choose "no":
70 format_columns_out = yes
71
72 # If your language environment is set to UTF-8, and gnuplot graphics aren't
73 # correctly displaying non ASCII characters, you can choose one of the two
74 # solutions below:
75 # (1) Set the variable "gnuplot_charset" to the non-UTF-8 charset that
76 # corresponds to your language (for Western European languages, this value is
77 # "ISO-8859-1"):
78 #gnuplot_charset = ISO-8859-1
79 # (2) If you want to mix characters from different charsets in the graphics
80 # titles and labels (like Latin, Cyrillic and Greek), then DO NOT set the
81 # "gnuplot_charset" variable (or set it to "UTF-8") and find the correct values
82 # for the two other variables below:
83 #gnuplot_charset = UTF-8
84 #gnuplot_default_term = x11 font "mbfont:vera,14"
85 #gnuplot_png_font = "/usr/share/fonts/truetype/cyberbit/cyberbit.ttf" 12
86
87 # Note: You should NOT mix "ISO-8859-1" and "mbfont"! Multi byte fonts is good
88 # only for strings encoded in UTF-8.
89
90 # Hint: To make statist automatically save all graphics as png pictures, even
91 # without a X server running, set the gnuplot_default_term to something like:
92 # gnuplot_default_term = png font "/usr/share/fonts/truetype/cyberbit/cyberbit.ttf" 12
93 # Note that you still will have to do the gnuplot command "set output filename.png"
94 # To run gnuplot graphics in console, without X server:
95 # gnuplot_default_term = dumb
96
97 # When statist saves columns in an ASCII file, integer numbers are printed as
98 # real numbers. Example: 1.0 is printed as 1.00000e+00. Set the option below
99 # to "yes" if you prefer that integer numbers are printed as integer, like
100 # "1.0" being printed as "1":
101 int_as_int_in_ascii_files = yes
102