criterion icon indicating copy to clipboard operation
criterion copied to clipboard

Is there any way to generate a static output?

Open wjrforcyber opened this issue 3 years ago • 3 comments

If I want to attach the report in my thesis appendix, the html version is not a good choice. Is there a neat way to export the result in the report (like figures, general results) csv is a one way to do it but means we have to manually plot the figures in html again?🙄

wjrforcyber avatar Dec 06 '21 16:12 wjrforcyber

If you are looking to save the figures in particular, you should be able to right-click on a figure in a web browser and Save Image As. For example, after running the fibber example, I was able to save the first of the fib / 1 figures as a PNG image:

canvas

Does this give you what you are looking for?

RyanGlScott avatar Dec 06 '21 23:12 RyanGlScott

If you are looking to save the figures in particular, you should be able to right-click on a figure in a web browser and Save Image As. For example, after running the fibber example, I was able to save the first of the fib / 1 figures as a PNG image:

canvas

Does this give you what you are looking for?

Well, it is good but I have a plenty of figure results in the report, do I have to do this one by one manually? Is there any command can directly export the figures?...And the general table result in the report like:


OLS regression | 712 μs | 731 μs | 757 μs
R² goodness-of-fit | 0.991 | 0.995 | 0.999
Mean execution time | 724 μs | 731 μs | 741 μs
Standard deviation | 21.0 μs | 28.0 μs | 43.9 μs

I quite like this format of result, is there any possible way to put this in Latex, csv result is quite different from this result I think, this table in html report is cleaner and can match the figure well.😶

wjrforcyber avatar Dec 07 '21 09:12 wjrforcyber

Well, it is good but I have a plenty of figure results in the report, do I have to do this one by one manually? Is there any command can directly export the figures?

Not that I'm aware of, no. This seems outside of the scope of the HTML report, however. There are are various web browser extensions that can be used to save images in bulk, such as Download All Images.

I quite like this format of result, is there any possible way to put this in Latex

There isn't a mode to export the figures directly to LaTeX syntax, no. I'd happily welcome a patch to add such a mode if you found it useful, however.

RyanGlScott avatar Dec 07 '21 12:12 RyanGlScott