Results 301 comments of Daniel Hrisca

PLease try the development branch ![image](https://github.com/user-attachments/assets/b66b504b-b64e-437f-98c9-5134e34ea20d)

please send a demo file, the cut arguments and the signal name

Please share some demo files that can reproduce the problem

`mdf.groups` is a list that you edit and pop the groups that are not needed

@MiroJelev please try the development branch code

You can call `select` with raw=True, then use the conversion attribute ch.conversion.convert(ch.samples, as_bytes=True)

@AndreiJurj12 ```python m = MDF(r'example_conversion_file.mf4') c = m.get('converted_channel', raw=True) print(c.conversion.convert(c.samples, as_bytes=True)) print(c.conversion.convert(c.samples, as_bytes=False)) ``` prints ``` [b'Value 1' b'Value 1' b'13.5' b'Value 1' b'Value 1'] [ nan nan 13.5 nan...

```python import pandas as pd import logging from asammdf import MDF from asammdf.blocks.v4constants import CHANNEL_TYPE_SYNC, SYNC_TYPE_TIME from os import listdir from os.path import isfile, join #%% Directories csv_directory = "in/csvfile.csv"...