Our server costs ~$56 per month to run. Please consider donating or becoming a Patron to help keep the site running. Help us gain new members by following us on Twitter and liking our page on Facebook!
Current time: August 13, 2025, 12:43 am

Thread Rating:
  • 1 Vote(s) - 2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I've made a new video against low-carb diets
RE: I've made a new video against low-carb diets
(October 19, 2022 at 9:09 am)FlatAssembler Wrote:
(October 17, 2022 at 11:15 pm)LadyForCamus Wrote: Is that how you think scientists determine the cause of some effect? They just try to imagine if it’s not?

Just stop. You’re embarrassing yourself.

No, I think they determine the cause and effect using the p-values. I think the p-value can be estimated analitically here, but I am not willing to spend time relearning statistics just for this, so I am going to estimate it numerically using this JavaScript program (just like I numerically estimated the p-value in the latest linguistics paper I have published):
Code:
const how_many_people_in_the_general_population_have_low_blood_pressure=1/3; // I think it's even less than that, but let's go with that.
const how_many_people_with_heart_attacks_have_low_blood_pressure=0.41;
const how_many_people_were_in_the_study=100; // And I am quite sure there were more, but let's go with that.
const how_many_times_will_we_run_the_simulation=10_000;
let how_many_times_did_we_get_the_expected_result=0;
for (let i=0; i<how_many_times_will_we_run_the_simulation; i++) {
  let counter=0;
  for (let i=0; i<how_many_people_were_in_the_study; i++)
    counter+=Math.random()<how_many_people_in_the_general_population_have_low_blood_pressure;
  if (counter/how_many_people_were_in_the_study>how_many_people_with_heart_attacks_have_low_blood_pressure)
    how_many_times_did_we_get_the_expected_result++;
}
console.log(`The p-value is ${how_many_times_did_we_get_the_expected_result/how_many_times_will_we_run_the_simulation*100}%.`);
That program prints:
Code:
The p-value is 4.32%.
Since the p-value is less than 5%, we conclude the relationship is causal.

Lol, wait. What data did you feed into that thing? Show your work. Also, P values don’t definitively prove cause and effect.
Nay_Sayer: “Nothing is impossible if you dream big enough, or in this case, nothing is impossible if you use a barrel of KY Jelly and a miniature horse.”

Wiser words were never spoken. 
Reply



Messages In This Thread
RE: I've made a new video against low-carb diets - by LadyForCamus - October 19, 2022 at 1:15 pm
RE: I've made a new video against low-carb diets - by Silver - October 17, 2022 at 9:05 pm
RE: I've made a new video against low-carb diets - by Ranjr - October 19, 2022 at 1:26 pm
RE: I've made a new video against low-carb diets - by Ranjr - October 19, 2022 at 11:36 pm
RE: I've made a new video against low-carb diets - by Ranjr - October 20, 2022 at 8:51 am
RE: I've made a new video against low-carb diets - by Silver - October 24, 2022 at 10:50 pm
RE: I've made a new video against low-carb diets - by Silver - November 2, 2022 at 1:31 am

Possibly Related Threads...
Thread Author Replies Views Last Post
  Ketogenic Diets against Epilepsy FlatAssembler 30 6044 May 20, 2020 at 10:52 pm
Last Post: brewer
  Vaccines: Low trust in vaccination 'a global crisis' zebo-the-fat 20 3816 September 6, 2019 at 8:28 am
Last Post: LastPoet
  Diets according to brain biologist from Russia purplepurpose 10 2930 November 15, 2018 at 6:32 pm
Last Post: Duty
  Are there situations where it is better to have a low IQ? Alexmahone 41 10459 July 5, 2018 at 5:41 pm
Last Post: brewer
Rainbow What science says about plant-based diets (Vegan) NeotericNinja 68 13606 May 23, 2016 at 3:09 pm
Last Post: paulpablo
  Submerged/sunken man-made object phobia. Creed of Heresy 14 15343 August 8, 2015 at 10:18 am
Last Post: Longhorn



Users browsing this thread: 1 Guest(s)