--------------------------------------------------------------------------------- log: C:\Documents and Settings\Betsy\Desktop\SF0\Pulse\Pulse_log.log log type: text opened on: 23 Mar 2008, 16:37:11 . . insheet using Pulse.txt, tab (10 vars, 126 obs) . drop if time=="" (84 observations deleted) . drop description . . *Translate time . gen double time2 = clock(time, "hm") . . *Create indicator variables for different levels of activity . gen act_rest = 0 . gen act_sit = 0 . gen act_walk = 0 . gen act_exert = 0 . replace act_rest = 1 if activity_level == "Rest" (3 real changes made) . replace act_sit = 1 if activity_level == "Sitting" (23 real changes made) . replace act_walk = 1 if activity_level == "Walking around" (10 real changes made) . replace act_exert = 1 if activity_level == "Heavy exertion" (4 real changes made) . . *Create variable for minutes since last heavy exertion . gen double time_exert = clock("12:00 AM", "hm") . replace time_exert = time2 if act_exert == 1 (4 real changes made) . replace time_exert = time_exert[_n-1] if act_exert == 0 & _n !=1 (29 real changes made) . . gen time_since_exert = (time2 - time_exert)/100000 . . . *Create variable for minutes since last food . gen double time_food = clock("12:00 AM", "hm") . replace time_food = time2 if food == 1 (5 real changes made) . replace time_food = time_food[_n-1] if food == 0 & _n !=1 (29 real changes made) . . gen time_since_food = (time2 - time_food)/100000 . . *****Investigate data***** . summarize Variable | Obs Mean Std. Dev. Min Max -------------+-------------------------------------------------------- time | 0 pulse_15sec | 40 22.225 4.352939 15 33 public | 42 .1904762 .3974366 0 1 activity_l~l | 0 music | 40 .275 .4522026 0 1 -------------+-------------------------------------------------------- singing | 40 .075 .2667468 0 1 fastmusic | 40 .1 .3038218 0 1 late | 40 .125 .3349321 0 1 food | 42 .1190476 .3277701 0 1 time2 | 42 5.59e+07 1.72e+07 2.67e+07 8.63e+07 -------------+-------------------------------------------------------- act_rest | 42 .0714286 .2606612 0 1 act_sit | 42 .547619 .5037605 0 1 act_walk | 42 .2380952 .4310805 0 1 act_exert | 42 .0952381 .2971018 0 1 time_exert | 42 4.20e+07 2.52e+07 0 7.98e+07 -------------+-------------------------------------------------------- time_since~t | 42 139.0571 128.2785 0 384 time_food | 42 4.48e+07 2.46e+07 0 8.07e+07 time_since~d | 42 111.8429 121.2845 0 381 . . twoway (scatter pulse_15sec time2, sort) (lfit pulse_15sec time2) . . *****Run regressions***** . *label variable pulse_15sec "Just Public" . reg pulse_15sec public Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 1, 38) = 17.14 Model | 229.745563 1 229.745563 Prob > F = 0.0002 Residual | 509.229437 38 13.4007747 R-squared = 0.3109 -------------+------------------------------ Adj R-squared = 0.2928 Total | 738.975 39 18.9480769 Root MSE = 3.6607 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 6.307359 1.523312 4.14 0.000 3.223575 9.391144 _cons | 21.12121 .6372473 33.14 0.000 19.83117 22.41125 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, replace br adjr2 seeout . . *label variable pulse_15sec "Baseline" . reg pulse_15sec public act_* Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 4, 35) = 54.75 Model | 637.145659 4 159.286415 Prob > F = 0.0000 Residual | 101.829341 35 2.90940975 R-squared = 0.8622 -------------+------------------------------ Adj R-squared = 0.8465 Total | 738.975 39 18.9480769 Root MSE = 1.7057 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 2.235529 .8172078 2.74 0.010 .5765089 3.894549 act_rest | -14.21557 1.365325 -10.41 0.000 -16.98733 -11.44381 act_sit | -10.71856 .9965099 -10.76 0.000 -12.74159 -8.69554 act_walk | -7.276447 1.012409 -7.19 0.000 -9.331746 -5.221148 act_exert | (dropped) _cons | 30.88224 .9456794 32.66 0.000 28.9624 32.80207 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Music Baseline" . reg pulse_15sec public act_* music Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 5, 34) = 43.57 Model | 639.203917 5 127.840783 Prob > F = 0.0000 Residual | 99.7710831 34 2.93444362 R-squared = 0.8650 -------------+------------------------------ Adj R-squared = 0.8451 Total | 738.975 39 18.9480769 Root MSE = 1.713 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.998738 .8680514 2.30 0.028 .2346454 3.762831 act_rest | -14.33396 1.378455 -10.40 0.000 -17.13532 -11.53261 act_sit | -11.04984 1.076123 -10.27 0.000 -13.23679 -8.862897 act_walk | -7.414196 1.029972 -7.20 0.000 -9.507351 -5.32104 act_exert | (dropped) music | .570347 .6810078 0.84 0.408 -.8136275 1.954321 _cons | 31.00063 .9602027 32.29 0.000 29.04926 32.952 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Music Baseline with Singing" . reg pulse_15sec public act_* music singing Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 6, 33) = 39.66 Model | 648.977662 6 108.162944 Prob > F = 0.0000 Residual | 89.9973376 33 2.72719205 R-squared = 0.8782 -------------+------------------------------ Adj R-squared = 0.8561 Total | 738.975 39 18.9480769 Root MSE = 1.6514 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.642173 .8577708 1.91 0.064 -.1029752 3.38732 act_rest | -14.51225 1.332218 -10.89 0.000 -17.22266 -11.80183 act_sit | -11.0639 1.037452 -10.66 0.000 -13.17461 -8.953186 act_walk | -7.790735 1.01266 -7.69 0.000 -9.851007 -5.730462 act_exert | (dropped) music | -.0702875 .7386036 -0.10 0.925 -1.572988 1.432413 singing | 2.345048 1.238737 1.89 0.067 -.1751812 4.865277 _cons | 31.17891 .9304519 33.51 0.000 29.2859 33.07193 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Music Baseline with Singing & Fast" . reg pulse_15sec public act_* music singing fastmusic Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 7, 32) = 33.01 Model | 649.076865 7 92.7252664 Prob > F = 0.0000 Residual | 89.8981352 32 2.80931672 R-squared = 0.8783 -------------+------------------------------ Adj R-squared = 0.8517 Total | 738.975 39 18.9480769 Root MSE = 1.6761 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.688112 .9042634 1.87 0.071 -.1538124 3.530036 act_rest | -14.48928 1.357642 -10.67 0.000 -17.2547 -11.72385 act_sit | -11.04825 1.056243 -10.46 0.000 -13.19975 -8.896754 act_walk | -7.766434 1.035898 -7.50 0.000 -9.876489 -5.656378 act_exert | (dropped) music | -.1468531 .853216 -0.17 0.864 -1.884797 1.591091 singing | 2.323077 1.262675 1.84 0.075 -.2489072 4.895061 fastmusic | .2083916 1.108969 0.19 0.852 -2.050505 2.467288 _cons | 31.15594 .9522354 32.72 0.000 29.2163 33.09558 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *Interaction variable . gen singfast = singing*fastmusic (2 missing values generated) . . *label variable pulse_15sec "Music Baseline, Singing Fast" . reg pulse_15sec public act_* music singing fastmusic singfast Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 8, 31) = 28.18 Model | 649.639502 8 81.2049378 Prob > F = 0.0000 Residual | 89.3354978 31 2.88179025 R-squared = 0.8791 -------------+------------------------------ Adj R-squared = 0.8479 Total | 738.975 39 18.9480769 Root MSE = 1.6976 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.606061 .934489 1.72 0.096 -.2998424 3.511964 act_rest | -14.5303 1.378173 -10.54 0.000 -17.34111 -11.7195 act_sit | -11.05411 1.069863 -10.33 0.000 -13.23611 -8.872112 act_walk | -7.848485 1.065481 -7.37 0.000 -10.02155 -5.675421 act_exert | (dropped) music | -.2640693 .903953 -0.29 0.772 -2.107694 1.579555 singing | 2.809524 1.687449 1.66 0.106 -.6320506 6.251098 fastmusic | .4545455 1.253749 0.36 0.719 -2.102492 3.011583 singfast | -1.142857 2.586478 -0.44 0.662 -6.418015 4.1323 _cons | 31.19697 .9688989 32.20 0.000 29.22089 33.17305 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline, Singing" . reg pulse_15sec public act_* singing Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 5, 34) = 49.02 Model | 648.952965 5 129.790593 Prob > F = 0.0000 Residual | 90.0220349 34 2.64770691 R-squared = 0.8782 -------------+------------------------------ Adj R-squared = 0.8603 Total | 738.975 39 18.9480769 Root MSE = 1.6272 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.627329 .8310873 1.96 0.058 -.0616435 3.316302 act_rest | -14.51967 1.310409 -11.08 0.000 -17.18274 -11.8566 act_sit | -11.09583 .9672771 -11.47 0.000 -13.06157 -9.130086 act_walk | -7.795475 .9965861 -7.82 0.000 -9.820781 -5.770168 act_exert | (dropped) singing | 2.291038 1.084905 2.11 0.042 .0862452 4.495831 _cons | 31.18634 .9135662 34.14 0.000 29.32975 33.04293 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline, Singing & Fast" . reg pulse_15sec public act_* singing fastmusic Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 6, 33) = 39.67 Model | 648.993641 6 108.165607 Prob > F = 0.0000 Residual | 89.9813593 33 2.72670786 R-squared = 0.8782 -------------+------------------------------ Adj R-squared = 0.8561 Total | 738.975 39 18.9480769 Root MSE = 1.6513 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.644078 .8544706 1.92 0.063 -.0943555 3.382511 act_rest | -14.51129 1.331582 -10.90 0.000 -17.22042 -11.80217 act_sit | -11.1066 .9855521 -11.27 0.000 -13.11172 -9.101476 act_walk | -7.784708 1.015179 -7.67 0.000 -9.850106 -5.71931 act_exert | (dropped) singing | 2.245577 1.162188 1.93 0.062 -.1189122 4.610067 fastmusic | .1172414 .9599163 0.12 0.904 -1.835723 2.070206 _cons | 31.17796 .9296273 33.54 0.000 29.28662 33.0693 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline, Singing Fast" . reg pulse_15sec public act_* singing fastmusic singfast Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 7, 32) = 33.14 Model | 649.393575 7 92.7705107 Prob > F = 0.0000 Residual | 89.5814249 32 2.79941953 R-squared = 0.8788 -------------+------------------------------ Adj R-squared = 0.8523 Total | 738.975 39 18.9480769 Root MSE = 1.6731 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.549618 .9011356 1.72 0.095 -.2859348 3.385171 act_rest | -14.55852 1.354993 -10.74 0.000 -17.31855 -11.79849 act_sit | -11.14885 1.004845 -11.10 0.000 -13.19566 -9.102052 act_walk | -7.862595 1.049064 -7.49 0.000 -9.999469 -5.725722 act_exert | (dropped) singing | 2.587786 1.4854 1.74 0.091 -.4378742 5.613447 fastmusic | .2569975 1.040542 0.25 0.806 -1.862517 2.376512 singfast | -.9211196 2.437001 -0.38 0.708 -5.885127 4.042888 _cons | 31.22519 .9501927 32.86 0.000 29.28971 33.16067 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline Late" . reg pulse_15sec public act_* late Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 5, 34) = 44.85 Model | 641.676437 5 128.335287 Prob > F = 0.0000 Residual | 97.2985627 34 2.86172243 R-squared = 0.8683 -------------+------------------------------ Adj R-squared = 0.8490 Total | 738.975 39 18.9480769 Root MSE = 1.6917 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 2.20799 .8107783 2.72 0.010 .5602902 3.85569 act_rest | -14.52927 1.37685 -10.55 0.000 -17.32737 -11.73118 act_sit | -11.03107 1.019039 -10.82 0.000 -13.10201 -8.960135 act_walk | -7.099239 1.013906 -7.00 0.000 -9.159745 -5.038733 act_exert | (dropped) late | -1.199746 .9534914 -1.26 0.217 -3.137474 .7379813 _cons | 31.19594 .9704688 32.15 0.000 29.22371 33.16817 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline Late, Time Since Heavy Exertion" . reg pulse_15sec public act_* late time_since_exert Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 6, 33) = 49.73 Model | 665.389796 6 110.898299 Prob > F = 0.0000 Residual | 73.5852038 33 2.22985466 R-squared = 0.9004 -------------+------------------------------ Adj R-squared = 0.8823 Total | 738.975 39 18.9480769 Root MSE = 1.4933 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.3892 .7584576 1.83 0.076 -.1538935 2.932294 act_rest | -12.27248 1.398595 -8.77 0.000 -15.11795 -9.427021 act_sit | -9.871639 .9672441 -10.21 0.000 -11.83951 -7.903766 act_walk | -6.173092 .9389781 -6.57 0.000 -8.083457 -4.262727 act_exert | (dropped) late | .1844498 .9426426 0.20 0.846 -1.733371 2.102271 time_since~t | -.008056 .0024704 -3.26 0.003 -.0130821 -.00303 _cons | 31.25929 .8568755 36.48 0.000 29.51596 33.00261 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *Logarithmic specifications . gen ln_time_exert = ln(time_since_exert+.00001) . gen ln_time_food = ln(time_since_food+.00001) . . *label variable pulse_15sec "Baseline, Time Since Heavy Exertion" . reg pulse_15sec public act_* time_since_exert Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 5, 34) = 61.41 Model | 665.30442 5 133.060884 Prob > F = 0.0000 Residual | 73.6705804 34 2.16678178 R-squared = 0.9003 -------------+------------------------------ Adj R-squared = 0.8856 Total | 738.975 39 18.9480769 Root MSE = 1.472 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.407947 .7416648 1.90 0.066 -.0992968 2.915191 act_rest | -12.37191 1.284466 -9.63 0.000 -14.98226 -9.761561 act_sit | -9.941269 .8865955 -11.21 0.000 -11.74305 -8.13949 act_walk | -6.176395 .9254534 -6.67 0.000 -8.057143 -4.295648 act_exert | (dropped) time_since~t | -.0078384 .0021743 -3.60 0.001 -.0122572 -.0034196 _cons | 31.29603 .8241433 37.97 0.000 29.62117 32.97089 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline, Log Time Since Heavy Exertion" . reg pulse_15sec public act_* ln_time_exert Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 5, 34) = 85.54 Model | 684.553785 5 136.910757 Prob > F = 0.0000 Residual | 54.4212147 34 1.60062396 R-squared = 0.9264 -------------+------------------------------ Adj R-squared = 0.9155 Total | 738.975 39 18.9480769 Root MSE = 1.2652 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.726255 .6133232 2.81 0.008 .4798323 2.972678 act_rest | (dropped) act_sit | 2.467388 .7997627 3.09 0.004 .8420749 4.092702 act_walk | 5.554264 .903958 6.14 0.000 3.717201 7.391328 act_exert | -3.299053 3.373818 -0.98 0.335 -10.15548 3.55737 ln_time_ex~t | -1.034642 .1901114 -5.44 0.000 -1.420995 -.6482888 _cons | 22.52417 1.30075 17.32 0.000 19.88073 25.16761 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline, Log Time Since Heavy Exertion and Since > Food" . reg pulse_15sec public act_* ln_time_exert ln_time_food Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 6, 33) = 73.35 Model | 687.427535 6 114.571256 Prob > F = 0.0000 Residual | 51.5474649 33 1.56204439 R-squared = 0.9302 -------------+------------------------------ Adj R-squared = 0.9176 Total | 738.975 39 18.9480769 Root MSE = 1.2498 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.456782 .637628 2.28 0.029 .1595179 2.754046 act_rest | (dropped) act_sit | 2.54521 .7921462 3.21 0.003 .9335766 4.156844 act_walk | 6.051161 .9652214 6.27 0.000 4.087404 8.014919 act_exert | -3.836704 3.356399 -1.14 0.261 -10.66535 2.991942 ln_time_ex~t | -1.080655 .1908457 -5.66 0.000 -1.468934 -.6923768 ln_time_food | .0754391 .0556184 1.36 0.184 -.0377174 .1885956 _cons | 22.35758 1.290835 17.32 0.000 19.73136 24.98381 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline, Singing, Time Since Heavy Exertion" . reg pulse_15sec public act_* singing time_since_exert Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 6, 33) = 59.53 Model | 676.475571 6 112.745928 Prob > F = 0.0000 Residual | 62.499429 33 1.89392209 R-squared = 0.9154 -------------+------------------------------ Adj R-squared = 0.9000 Total | 738.975 39 18.9480769 Root MSE = 1.3762 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | .8255373 .7336925 1.13 0.269 -.6671712 2.318246 act_rest | -12.68841 1.20792 -10.50 0.000 -15.14594 -10.23087 act_sit | -10.317 .8432077 -12.24 0.000 -12.03252 -8.60148 act_walk | -6.693652 .8910506 -7.51 0.000 -8.506508 -4.880796 act_exert | (dropped) singing | 2.228818 .9177125 2.43 0.021 .3617177 4.095918 time_since~t | -.0077505 .0020331 -3.81 0.001 -.011887 -.0036141 _cons | 31.58723 .7797799 40.51 0.000 30.00076 33.17371 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline, Singing, Log Time Since Heavy Exertion" . reg pulse_15sec public act_* singing ln_time_exert Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 6, 33) = 85.95 Model | 694.533313 6 115.755552 Prob > F = 0.0000 Residual | 44.4416873 33 1.3467178 R-squared = 0.9399 -------------+------------------------------ Adj R-squared = 0.9289 Total | 738.975 39 18.9480769 Root MSE = 1.1605 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- public | 1.176147 .5977727 1.97 0.058 -.0400304 2.392325 act_rest | (dropped) act_sit | 2.419276 .7338052 3.30 0.002 .9263377 3.912214 act_walk | 5.382344 .8315685 6.47 0.000 3.690505 7.074183 act_exert | -2.692492 3.102688 -0.87 0.392 -9.004958 3.619975 singing | 2.108 .7743797 2.72 0.010 .5325128 3.683487 ln_time_ex~t | -1.015339 .1745262 -5.82 0.000 -1.370415 -.660263 _cons | 22.41489 1.193804 18.78 0.000 19.98608 24.84371 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline Without Public, Log Time Since Heavy Exer > tion" . reg pulse_15sec act_* ln_time_exert Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 4, 35) = 87.61 Model | 671.873751 4 167.968438 Prob > F = 0.0000 Residual | 67.1012487 35 1.91717853 R-squared = 0.9092 -------------+------------------------------ Adj R-squared = 0.8988 Total | 738.975 39 18.9480769 Root MSE = 1.3846 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- act_rest | (dropped) act_sit | 2.459452 .8752761 2.81 0.008 .6825469 4.236357 act_walk | 6.119418 .9646002 6.34 0.000 4.161175 8.07766 act_exert | -3.83804 3.686443 -1.04 0.305 -11.32192 3.645838 ln_time_ex~t | -1.116282 .205627 -5.43 0.000 -1.533727 -.6988369 _cons | 22.98637 1.412185 16.28 0.000 20.11948 25.85326 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . *label variable pulse_15sec "Baseline Without Public, Log Time Since Heavy Exer > tion, Singing" . reg pulse_15sec act_* ln_time_exert singing Source | SS df MS Number of obs = 40 -------------+------------------------------ F( 5, 34) = 94.40 Model | 689.319831 5 137.863966 Prob > F = 0.0000 Residual | 49.6551694 34 1.46044616 R-squared = 0.9328 -------------+------------------------------ Adj R-squared = 0.9229 Total | 738.975 39 18.9480769 Root MSE = 1.2085 ------------------------------------------------------------------------------ pulse_15sec | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- act_rest | (dropped) act_sit | 2.40273 .7641116 3.14 0.003 .8498688 3.955592 act_walk | 5.681385 .8513825 6.67 0.000 3.951168 7.411603 act_exert | -2.86954 3.229683 -0.89 0.381 -9.433045 3.693965 ln_time_ex~t | -1.05989 .1802101 -5.88 0.000 -1.42612 -.6936587 singing | 2.62308 .7589364 3.46 0.001 1.080736 4.165424 _cons | 22.66711 1.236003 18.34 0.000 20.15525 25.17897 ------------------------------------------------------------------------------ . outreg2 using pulse_regs, br adjr2 seeout . . log close log: C:\Documents and Settings\Betsy\Desktop\SF0\Pulse\Pulse_log.log log type: text closed on: 23 Mar 2008, 16:37:15 ---------------------------------------------------------------------------------