If needed, you can export your results to excel directly using the excelExporter
module.
To use the excel export functionalities, you must first install XlsxWriter
with the following command-line.
$ pip install XlsxWriter
Then add the following import statement at the beginning of your python script:
import eventstudy as es
from eventstudy import excelExporter
The last line will attach to the eventstudy.Single
and eventstudy.Multiple
classes a new function: .to_excel()
.
lorem…