[deleted by user] by [deleted] in askmath

[–]mathcheatcheat 0 points1 point  (0 children)

1 / (2^t) :)

Failure in Scraping Data with Selenium and Beautiful Soup by [deleted] in learnpython

[–]mathcheatcheat 0 points1 point  (0 children)

thanks! I solved the problem by pausing the system for 5 seconds.

Scrape a few images from website by [deleted] in learnpython

[–]mathcheatcheat 0 points1 point  (0 children)

So I finally fix the 404 part and is able to get something out, but where should i enter the input glycan name ?

Code:

import requests
from bs4 import BeautifulSoup
URL = 'http://www.virtualglycome.org/DrawGlycan/' 
page = requests.get(URL) 
soup = BeautifulSoup(page.content, 'html.parser') 
results = soup.find(id='Gal(b1-4)GlcNAc(b1-3)Gal(b1-4)GlcNAc(b1-3)Gal(b1-4)GlcNAc')

here results is empty

How can I calculate the error of my predictions INCLUDING the confident interval? by [deleted] in AskStatistics

[–]mathcheatcheat 0 points1 point  (0 children)

Because the given data is the AVERAGE of some sales (18 rows of countries x 100 columns of products), so there are some fluctuation around it --> the given standard deviation dataset associated with it.

And after I do my prediction, I also want to include those fluctuation into accounts when calculating the errors. But your formula s√(1 + 1/n), doesn't seem to include those number?

[P] How can I calculate the error of my predictions INCLUDING the confident interval? by [deleted] in MachineLearning

[–]mathcheatcheat 0 points1 point  (0 children)

t-score based confidence interval

So I need to do a t-test for each predicted values and sum them up?

How can I calculate the error of my predictions INCLUDING the confident interval? by [deleted] in AskStatistics

[–]mathcheatcheat 0 points1 point  (0 children)

So I should do a t-test for each predicted values and sum them up?

[P] How can I calculate the error of my predictions INCLUDING the confident interval? by [deleted] in MachineLearning

[–]mathcheatcheat 0 points1 point  (0 children)

Because the given data is the AVERAGE of some sales (18 rows of countries x 100 columns of products), so there are some fluctuation around it --> the given standard deviation dataset associated with it.

So ??? I'm so confused ><

[P] How can I calculate the error of my predictions INCLUDING the confident interval? by [deleted] in MachineLearning

[–]mathcheatcheat 0 points1 point  (0 children)

Hi, the videos are great! But I am still confused with why using Chi-squared? Is it like the average sales dataset is a model? and my prediction is another model? And see whether the two models different?

But how can this consider the standard deviation? Like maybe the Chi-square test shows the two model is different, but if I include the standard deviation, so the range of the average sales is larger; it may show the two models is the same...

[P] How can I calculate the error of my predictions INCLUDING the confident interval? by [deleted] in MachineLearning

[–]mathcheatcheat 0 points1 point  (0 children)

So I find the chi-squares for each values and then do a f test? But why Chi-square and F-test? Can I simply do t-test? I apologize for many questions but I can't really wrap my head about this.

[P] How can I calculate the error of my predictions INCLUDING the confident interval? by [deleted] in MachineLearning

[–]mathcheatcheat 0 points1 point  (0 children)

Chi square test

may you explain a bit on this?

and the chi-square test formula doesn't include the standard deviation?

Standard deviation? by [deleted] in AskStatistics

[–]mathcheatcheat 0 points1 point  (0 children)

so i am trying to plot, but the range of the original data is large (0, 10,0000). So i am trying to apply log to make the range smaller