discussion on how we can use statistical methods to measure and improve the efficacy of http://freeCodeCamp.com
People
Repo info
Activity
Oct 02 18:47
sarony removed as member
Oct 02 17:45
erictleung commented #82
Aug 15 11:17
FrednandFuria opened #82
Jun 20 21:19
@bjorno43 banned @shenerd140
May 10 09:13
@bjorno43 banned @zhaokunhaoa
Apr 27 19:48
@mstellaluna banned @zhonghuacx
Apr 25 17:07
@mstellaluna banned @cmal
Jan 08 22:07
@mstellaluna banned @gautam1858
Jan 08 22:05
@mstellaluna banned @dertiuss323
Dec 15 2018 23:34
@mstellaluna banned @Julianna7x_gitlab
Oct 12 2018 05:50
@bjorno43 banned @NACH74
Oct 05 2018 23:02
@mstellaluna banned @JomoPipi
Sep 16 2018 12:21
@bjorno43 banned @yash-kedia
Sep 16 2018 12:16
@bjorno43 banned @vnikifirov
Sep 05 2018 08:13
User @bjorno43 unbanned @androuino
Sep 05 2018 07:38
@bjorno43 banned @androuino
Aug 23 2018 16:58
User @bjorno43 unbanned @rahuldkjain
Aug 23 2018 16:23
@bjorno43 banned @rahuldkjain
Jul 29 2018 14:15
User @bjorno43 unbanned @jkyereh
Jul 29 2018 01:00
@bjorno43 banned @jkyereh
Eric Leung
@erictleung
Occasionally people stop by and ask about mathematics for machine learning. Just ran into this book that may prove useful https://mml-book.github.io/. Short-ish book of about 400 pages and it is free to download. It will also be published eventually if you want a physical copy. I ran into this while reading through this thread books to read for deep learning in case you want to dig a bit deeper.
Hi Guys , I am trying to deploy the opencv in the heroku using the python flask . I am getting the following error : ImportError: libSM.so.6: cannot open shared object file: No such file or directory Is there any way to deploy the opencv in the heroku ?
chance = 0while chance <=3:
guess = int(input("Guess: "))
if guess == 9:
print("try again")
chance+1else:
print("try again")
chance+=1
print(chance) #why does this print 4 instead of 3 when you enter the integer 9?
Eric Leung
@erictleung
@Koderkid1936 your while loop will allow chance to equal 3. So it will go through the loop once more and run the line chance += 1 again, thus making chance equals to 4 as it has printed out.
@Koderkid1936this link might help you visualize what your code is doing. It will create diagrams of what your code is doing as you go through it line by line.
Koderkid1936
@Koderkid1936
@erictleung thanks alot much appreciated, i think im starting to understand the flow of the program it executes the chance+=1 statement beofre the while loop.. i think but i will do more research thanks :thumbsup:
Eric Leung
@erictleung
Random comment. So I'm helping out with a data science boot camp in town and last time I checked, in one of their modules, they are using one of the freeCodeCamp new coder surveys as one of their datasets! So crazy that something I've had a hand in cleaning up has come full circle for me to see again :laughing:
Philip Durbin
@pdurbin
Can you please link me to that dataset? I'll take it under consideration for dataverse-sample-data. :)
Hi guys
Can anyone mention good courses for data science for complete beginners ( person who hasn't had attachment with tech ever andis a business graduate)
I did some google search for this
But wanted to know some personal reviews
Thanks
Philip Durbin
@pdurbin
@erictleung oh, right, we talked about this FCC dataset at freeCodeCamp/2017-new-coder-survey#7 :) Do you want to hear more about dataverse-sample-data? :)
if anyone is looking for free data, I've just discovered the Food and Agriculture Organization of the United Nations' FAOSTAT and OHMYGOD so much information
(in case it needs to be stated explicitly, it's all agricultural-related data)
ruitoantunes
@ruitoantunes
Hi
ruitoantunes
@ruitoantunes
i'm starting programming in php and would like to have some support on the php code
Alice Jiang
@becausealice2
@ruitoantunes I don't know that many people here would be able to help with PHP, it's not a very common language in Data Science. Perhaps if you share a code snippet someone could have a look?
ruitoantunes
@ruitoantunes
Ok thanks.
Sakitha
@Sakitha
Hi, does apply in df.apply(fun) iterate over each columns in 'df' data-frame and pass them to 'fun' function as a series?
Eric Leung
@erictleung
@Sakitha hi there! What language and package are you working with? I'm assuming Python and pandas but just wanna be sure.
Alice Jiang
@becausealice2
@Sakitha :point_up: making that same assumption, yes. Each column is passed as a Series object to fun
Philip Durbin
@pdurbin
I like the sound of apply(fun)
Alice Jiang
@becausealice2
I wonder what that does :weary:
I shouldn't be so dramatic :laughing:
Philip Durbin
@pdurbin
:)
Atharva Kulkarni
@IronVenom
hello
Eric Leung
@erictleung
@IronVenom hello and welcome! :smile:
abraham anak agung
@padunk
hello, anybody here? :smile:
Philip Durbin
@pdurbin
Some of us are here. :) What can we do for you?
abraham anak agung
@padunk
@pdurbin It is ok, SO to the rescue :smile: . Just confuse why np.std() return different value compare to pandas std.
Philip Durbin
@pdurbin
np is numpy, I assume
Sundeep
@pidugusundeep
Hey
Anu-Pra
@Anu-Pra
Hey
Is anyone interested in forming a study group for learning P1xt Data Science guide?
I need a study partner
Eric Leung
@erictleung
@padunk if you remember, what is the difference between np.std() and pd.std()? I'd like to know :smile: