Displaying 4 results from an estimated 4 matches for "edium".
Did you mean:
medium
2007 Jun 21
1
anova on data means
...ioning from SAS to R and am struggling with a relatively simple
analysis. Have tried Venables and Ripley and other guides but can't find a
solution.
I have an experiment with 12 tanks. Each tank holds 10 fish. The 12 tanks
have randomly assigned one of 4 food treatments - S(tarve), L(ow), M(edium)
and H(igh). There are 3 reps of each treatment. I collect data on size of
each fish at the end of the experiment. So my data looks like
Tank Trt Fish Size
1 S 1 3.4
1 S 2 3.6
....
1 S 10 3.5
2 L 1 3.4
....
12 M 10 2.1
To...
2016 Jul 18
2
Re: [PATCH v2 2/3] mllib: Use L"..." and S '...' for long and short options.
On Monday, 18 July 2016 11:46:46 CEST Richard W.M. Jones wrote:
> ---
Note that this changes the way -foo options are handled: this basically
makes them as --foo, but still working as -foo because getopt_long_only
is used. IMHO either add a new M".." ([M]edium or [T]runcated or
[D]ash or ...), or turn S to get a string instead.
> - let validate_key key =
> - if String.length key == 0 || key == "-" || key == "--"
> - || key.[0] != '-' then
> - invalid_arg (sprintf "invalid option key: '%s...
2016 Jul 18
0
Re: [PATCH v2 2/3] mllib: Use L"..." and S '...' for long and short options.
...> On Monday, 18 July 2016 11:46:46 CEST Richard W.M. Jones wrote:
> > ---
>
> Note that this changes the way -foo options are handled: this basically
> makes them as --foo, but still working as -foo because getopt_long_only
> is used. IMHO either add a new M".." ([M]edium or [T]runcated or
> [D]ash or ...), or turn S to get a string instead.
Do you mean only for the 'virt-v2v --help' output? I don't think
there is any other place in the code where the M option would be
handled differently from the L option.
> > - let validate_key key =
>...
2016 Jul 18
4
[PATCH v2 0/3] mllib: Various fixes and changes to Getopt module.
v1 -> v2:
- Further fixes to Getopt int parsing.
- Completed the L/S changes.
- Fixed the test suite so it passes now. Also we don't need the
special-case tests for 64 bit arch.
Rich.