Dominique Makowski

Results 682 comments of Dominique Makowski

Yes I think you're right, [mne-style](https://mne.tools/dev/auto_tutorials/intro/70_report.html) interactive html reports would probably be the most flexible option. I see this as a big feature (that could be the marker of the...

Yeah, that looks awesome! perhaps we should create functions called `ppg_report(method_cleaning="something", method_peak="something")` in which we create the corresponding text programmatically (`if method_cleaning=="this": "Data cleaning was performed using ..."`), so that...

I think we can extend ppg_process() indeed to allow more customization. Maybe we could like that: 1) add implement `*_report()`: ```python function ppg_report(method="elgendi", method_cleaning="default", method_peaks="default"): # This function first sanitizes...

no need for hacks, I thought of something like that: ```python def ppg_report(method="elgendi", method_cleaning="default", method_peaks="default"): if method_cleaning == "default": if method == "elgendi": method_cleaning = "elgendi" elif method == "somethingelse":...

```python import matplotlib import neurokit2 as nk signal = nk.signal_simulate(duration=10, frequency=[5, 7, 10, 14], noise=0.05) mfdfa, info = nk.fractal_mfdfa(signal, q=np.linspace(-3, 3, 7), show=True, scale = nk.expspace(50, 500, 20)) fig =...

I added an "experimental" feature that I wanted your opinion on: The fluctuations often display a non-linear pattern, and the longer the scales the more the coefficient of the linear...

@LRydin I'll merge this, but still do let me know if you have any thoughts on that when you have time ;) and thanks again for your help!

No worries, thanks a lot @LRydin ;)