Congratulations and best of luck with your presentation!!
Danes ans Japanese agreeing on a preference curve is not a big deal. Get Danes and Swedes agree to it and I will call that universal.
Soundguys wasnt much worse than harman, but why are they all low?View attachment 318109Preference ratings and 32 magnitude frequency response curves
This repository comprises two CSV files: PreferenceRatings and MagnitudeFrequencyResponses. The former includes preference ratings obtained from 56 naive assessors (30 Danish---DK, 26 Japanese---JP) of 32 headphone curves over several music programs in several trials. The latter includes the...zenodo.org
Danes and Japanese agreeing on a preference curve is not a big deal. Get Danes and Swedes agree to it and I will call that universal.
Has anyone plotted this data in a more readable manner? The preference ratings+confidence intervals are fine but the graph spaghetti is almost impossible to parseView attachment 318109Preference ratings and 32 magnitude frequency response curves
This repository comprises two CSV files: PreferenceRatings and MagnitudeFrequencyResponses. The former includes preference ratings obtained from 56 naive assessors (30 Danish---DK, 26 Japanese---JP) of 32 headphone curves over several music programs in several trials. The latter includes the...zenodo.org
You might enjoy reading https://www.audiotechnology.com/features/resonating-with-history and https://www.mixonline.com/business/cover-story-peter-dantonio-doctor-of-diffusion-part-1And, it's related, an interesting "Scientific milestones in the evolution of modern recording control room design".
Has anyone plotted this data in a more readable manner?
where?Someone has, yes
Good point. Best I've been able to do is grab the Preference data itself and import it into an excel sheet. Otherwise, I'm lost.And I'm quite curious to learn how that second plot was created.
aesny23.sched.com
That "name" is chosen badly, because an international audience might "interpret" it incorrectly.'Doof' means deaf, ' Stokdoof' means completely deaf. So don't think audio is of much interest to them.
, it might emphasize "doof"... In German it means something like "strohdumm" Dr. Sean Olive is a graduate of McGill and they have done some good work such as researching recording environments with respect to acoustic treatments. I don't think they have a specific agenda and the work simply depends on interest of the students and faculty.I immediately notice a small batch of presentations from the McGill U group (Wieslaw Woszczyk and collabs) ...which gives me pause
Good point. Best I've been able to do is grab the Preference data itself and import it into an excel sheet. Otherwise, I'm lost.
I am a thief, help you @ the original author who made this table.So the question I have about this plot is : what am I looking at exactly ? How do we go from the csv file to this plot ? Does it include all listeners and test tracks ? How is the data combined / averaged ? What is the upper and lower boundaries ? Etc.
If @192kbps could help us understand it, it would be very nice.
As it stands in that plot HP3 (the only ones I am certain which HPs they are) in all three forms is preferred over the two APHarm2018 targets even though this excerpt is part of the paper's conclusion according to Sean Olive :
View attachment 318476
https://x.com/seanolive/status/1711824131971531178?s=20
So it could be that whoever created this plot processed the data differently from the study's authors. Or not, IDK. Or I am misunderstanding the excerpt in this tweet.
Quite eager to read the article anyway as I suspect that the methodology used is not quite the same as Harman's.
Dr. Sean Olive is a graduate of McGill and they have done some good work such as researching recording environments with respect to acoustic treatments. I don't think they have a specific agenda and the work simply depends on interest of the students and faculty.
So the question I have about this plot is : what am I looking at exactly ? How do we go from the csv file to this plot ? Does it include all listeners and test tracks ? How is the data combined / averaged ? What is the upper and lower boundaries ? Etc.
If @192kbps could help us understand it, it would be very nice.
As it stands in that plot HP3 (the only ones I am certain which HPs they are) in all three forms is preferred over the two APHarm2018 targets even though this excerpt is part of the paper's conclusion according to Sean Olive :
So it could be that whoever created this plot processed the data differently from the study's authors. Or not, IDK. Or I am misunderstanding the excerpt in this tweet.
Quite eager to read the article anyway as I suspect that the methodology used is not quite the same as Harman's.
clear;clc
table1 = readtable("data\MagnitudeFrequencyResponses.csv");
table2 = readtable("data\PreferenceRatings.csv");
freq0 = table1{1,2:end};
targets = struct;
count = 1;
for i = 2:height(table1)
targets(count).name = table1{i,1};
targets(count).freq = freq0;
targets(count).gain = table1{i,2:end};
count = count + 1;
end
target_names = [targets(:).name];
figure(231011003);clf(231011003);
for i = 1:length(targets)
semilogx(targets(i).freq, targets(i).gain);
grid on;
hold on;
end
xlim([30,25000]);
xlabel('Freq (Hz)');
ylabel('Gain (dB)');
legend(target_names, 'Location', 'eastoutside');
figure(231011004); clf(231011004);
boxplot(table2.Rating, table2.HeadphoneCurve);
ylabel('Rating');