basf / doe

Python package for flexible generation of D-optimal experimental designs
https://basf.github.io/doe
BSD 3-Clause "New" or "Revised" License
11 stars 6 forks source link

add D-optimality score #8

Closed jsdiazpo closed 1 year ago

jsdiazpo commented 1 year ago

A nice-to-have method could return a D-optimality score, such as the log-determinant of the information matrix log(det(X^T X)). This would allow easy comparison between designs.

Osburg commented 1 year ago

Hi :) Such a function already exists, you can find it as doe.utils.metrics(). It will also return values for A-optimiality and G-efficiency.

jsdiazpo commented 1 year ago

Brilliant! Thanks @Osburg