Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions autofit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
from .non_linear.samples import SamplesStored
from .database.aggregator import Aggregator
from .aggregator.summary.aggregate_csv import AggregateCSV
from .aggregator.summary.aggregate_csv import ValueType
from .aggregator.summary.aggregate_images import AggregateImages
from .aggregator.summary.aggregate_fits import AggregateFITS, FITSFit
from .database.aggregator import Query
Expand Down
2 changes: 1 addition & 1 deletion autofit/aggregator/summary/aggregate_csv/column.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def value(self, row: "Row"):
result[""] = row.median_pdf_sample_kwargs[self.path]

if ValueType.MaxLogLikelihood in self.value_types:
result["max_lh"] = row.max_likelihood_kwargs
result["max_lh"] = row.max_likelihood_kwargs[self.path]

if ValueType.ValuesAt1Sigma in self.value_types:
lower, upper = row.values_at_sigma_1_kwargs[self.path]
Expand Down
Loading