MathGroup Archive 1996

[Date Index] [Thread Index] [Author Index]

Search the Archive

re:formatting output

  • To: mathgroup at smc.vnet.net
  • Subject: [mg3639] re:formatting output
  • From: "Oscar Linares" <Linares_Oscar at msn.com>
  • Date: Sat, 30 Mar 1996 02:48:40 -0500
  • Sender: owner-wri-mathgroup at wolfram.com

The following sequence of print commands produces the followng output:

**** PRINT COMMANDS
Print["ELISA: Level y-cVector   = ",ELISAyCutLevel ]
Print["Length  ELIS y-sVector   = ",
			Length[spliceELIS]]
Print["Interval ELIS y-sVector  = ",
			{spliceX0, spliceXn}]
Print["Minimum ELIS Response    = ",
			Min[spliceELIS]]
Print["Minimum ELIS Frequency   = ",
			Count[spliceELIS, Min[spliceELIS]]]
Print["Median  ELIS Response    = ",
			Round[Median[N[spliceELIS,3]]]]
Print["Median  ELIS Frequency   = ",
			Count[spliceELIS, Round[Median[spliceELIS]]]]
Print["Maximum ELIS Response    = ",
			Max[spliceELIS]]
Print["Maximum ELIS Frequency   = ",
			Count[spliceELIS, Max[spliceELIS]]]
Print[""]
Print["Mean    ELIS Response   = ",
			Round[Mean[N[spliceELIS,3]]]]
Print["Mean    ELIS Frequency  = ",
			Count[spliceELIS, Round[Mean[spliceELIS]]]]
Print["Standard Deviation ELIS = ",
			Round[StandardDeviation[N[spliceELIS,3]]]]
Print["Fractional SD ELIS (%)  = ",
	N[Round[StandardDeviation[N[spliceELIS,3]]]/Round[Mean[N[spliceELIS,3]]]] 
100]
Print["Normal 95% CI ELIS      = ",
NormalCI[Mean[N[spliceELIS]],Round[StandardDeviation[N[spliceELIS,3]]]]]
****
**** OUTPUT
****
ELISA: Level y-cVector   = 84
Length  ELIS y-sVector   = 28
Interval ELIS y-sVector  = {98, 125}
Minimum ELIS Response    = 46
Minimum ELIS Frequency   = 8
Median  ELIS Response    = 51
Median  ELIS Frequency   = 19
Maximum ELIS Response    = 55
Maximum ELIS Frequency   = 1

Mean    ELIS Response   = 50
Mean    ELIS Frequency  = 0
Standard Deviation ELIS = 3
Fractional SD ELIS (%)  = 6.
Normal 95% CI ELIS      = {43.8344, 55.5942}
****
****
****
I would like the results to stored in tab delimited row column format.  For 
example, the above would constitute 1 row with 12 columns. I excluded the 
values in parentheses since I do not need these beyond this point.

I have tried a variety of things already and can't seem to get it to work. I 
can store the results in the above single column row format but that is not 
what I want.

Thanks,

Oscar A. Linares, M.D.



==== [MESSAGE SEPARATOR] ====


  • Prev by Date: re:ANOVA
  • Next by Date: Re: Plot problem
  • Previous by thread: Re: re: ANOVA
  • Next by thread: Few mathematica commands