I have praat script which give me information about intensity of sound, and the result will be in text file but the result does not seem good and messy ? can any one help me to make equal spaces between the columns so I can see every column clearly?
the result like this: enter image description here
part of my script :
calculates the intensity values
select Intensity 'soundname$'
min_int = Get minimum... onset offset Parabolic
min_time = Get time of minimum... onset offset Parabolic
max_int = Get maximum... onset offset Parabolic
max_time = Get time of maximum... onset offset Parabolic
mean_Int = Get mean... onset offset dB
resultline$ = " 'soundname$' 'label$' 'mean_Int' 'min_int' 'min_time' 'max_int' 'max_time' "
fileappend "'textfile$'" 'resultline$'
endif
endfor