Hi there!
When exporting e.g. f0 pitch estimation analysis data to csv, I get mixed decimal separators - how can I resolve this?
Thanks, c
Hi,
Thank you for your feedback. What is the version of Partiels, the operating system, and can you share an example?
Thanks,
Pierre
Partiels 2.1.0
Linux, Ubuntu
analysis data exported to csv with comma as separator, headers included looks like this:
TIME,DURATION,VALUE
0.0000113380,0.0000000000,537,326050
0.0058163270,0.0000000000,
0.0116213150,0.0000000000,
0.0174263040,0.0000000000,
0.0232312930,0.0000000000,
0.0290362810,0.0000000000,
0.0348412700,0.0000000000,
0.0406462590,0.0000000000,
0.0464512470,0.0000000000,
0.0522562360,0.0000000000,
0.0580612240,0.0000000000,
0.0638662130,0.0000000000,
0.0696712020,0.0000000000,
0.0754761900,0.0000000000,
0.0812811790,0.0000000000,
0.0870861680,0.0000000000,
0.0928911560,0.0000000000,
0.0986961450,0.0000000000,
0.1045011340,0.0000000000,
0.1103061220,0.0000000000,
0.1161111110,0.0000000000,
0.1219161000,0.0000000000,
0.1277210880,0.0000000000,
0.1335260770,0.0000000000,
0.1393310660,0.0000000000,
0.1451360540,0.0000000000,
0.1509410430,0.0000000000,
0.1567460320,0.0000000000,
0.1625510200,0.0000000000,
0.1683560090,0.0000000000,
0.1741609980,0.0000000000,
0.1799659860,0.0000000000,
0.1857709750,0.0000000000,
0.1915759640,0.0000000000,
0.1973809520,0.0000000000,
0.2031859410,0.0000000000,
0.2089909300,0.0000000000,
0.2147959180,0.0000000000,
0.2206009070,0.0000000000,
0.2264058960,0.0000000000,
0.2322108840,0.0000000000,
0.2380158730,0.0000000000,
0.2438208620,0.0000000000,
0.2496258500,0.0000000000,
0.2554308390,0.0000000000,
0.2612358280,0.0000000000,
0.2670408160,0.0000000000,
0.2728458050,0.0000000000,
0.2786507940,0.0000000000,
0.2844557820,0.0000000000,
0.2902607710,0.0000000000,
0.2960657600,0.0000000000,
0.3018707480,0.0000000000,
0.3076757370,0.0000000000,
0.3134807260,0.0000000000,
0.3192857140,0.0000000000,
0.3250907030,0.0000000000,
0.3308956920,0.0000000000,
0.3367006800,0.0000000000,
0.3425056690,0.0000000000,
0.3483106580,0.0000000000,
0.3541156460,0.0000000000,
0.3599206350,0.0000000000,
0.3657256240,0.0000000000,
0.3715306120,0.0000000000,
0.3773356010,0.0000000000,587,140198
That seems to be related to the locales (languages). If you type locale
in the terminal, what do you get?
It’s de_DE.UTF-8
I guess you have de_DE.UTF-8 for all the entries:
LANG=de_DE.UTF-8
LANGUAGE=
LC_CTYPE=de_DE.UTF-8
LC_NUMERIC="de_DE.UTF-8"
LC_TIME="de_DE.UTF-8"
...
If you type locale -a
, you should see all the available locales:
C
C.UTF-8
POSIX
en_AG
en_AG.utf8
en_AU.utf8
...
Can you try setting LC_NUMERIC to C.UTF-8 (or English)?
This worked!
thanks!