Skip to content

Commit 0cafd5b

Browse files
authored
Merge pull request #1302 from stan-dev/fix/stansummary-csv
Remove internal newlines in stansummary output
2 parents 1a9bbd0 + 235983b commit 0cafd5b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/cmdstan/stansummary_helper.hpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -687,14 +687,13 @@ void write_sampler_info(const stan::io::stan_csv_metadata &metadata,
687687
*out << prefix
688688
<< "For each parameter, ESS_bulk and ESS_tail measure the "
689689
"effective sample size "
690-
<< std::endl
691-
<< "for the entire sample (bulk) and for the "
692-
"the .05 and .95 tails (tail), "
690+
"for the entire sample (bulk) and for the "
691+
".05 and .95 tails (tail), "
693692
<< std::endl;
694693
*out << prefix
695-
<< "and R_hat measures the potential scale reduction on split chains."
696-
<< std::endl
697-
<< "At convergence R_hat will be very close to 1.00." << std::endl;
694+
<< "and R_hat measures the potential scale reduction on split chains. "
695+
"At convergence R_hat will be very close to 1.00."
696+
<< std::endl;
698697
}
699698

700699
/**

0 commit comments

Comments
 (0)