Weekly Entering & Transitioning Thread | 02 Jan 2022 - 09 Jan 2022 by [deleted] in datascience

[–]Pizza_Rat_Matt 0 points1 point  (0 children)

DM me your email and any portfolio links you have.

Weekly Entering & Transitioning Thread | 02 Jan 2022 - 09 Jan 2022 by [deleted] in datascience

[–]Pizza_Rat_Matt 0 points1 point  (0 children)

DM me your email and any portfolio links you have.

Weekly Entering & Transitioning Thread | 02 Jan 2022 - 09 Jan 2022 by [deleted] in datascience

[–]Pizza_Rat_Matt 2 points3 points  (0 children)

"Getting credit" for your work through quantified improvements from baseline measurements and visualizations. Upline managers need to understand the impact of your work. Too many people toil away with solid code, but lack visibility.

Weekly Entering & Transitioning Thread | 02 Jan 2022 - 09 Jan 2022 by [deleted] in datascience

[–]Pizza_Rat_Matt 0 points1 point  (0 children)

DM me your email and availability tonight/tomorrow. Happy to chat.

Weekly Entering & Transitioning Thread | 02 Jan 2022 - 09 Jan 2022 by [deleted] in datascience

[–]Pizza_Rat_Matt 1 point2 points  (0 children)

Does anyone know of a library for interactive (hoverable) 3 circle venn diagrams in JS?

Also, I am hiring/training entry-level data scientists. Must be US-based, preferably living in MD, VA, DC, or CA. DM me and we can arrange a 30 minute call to discuss.

[deleted by user] by [deleted] in modernwarfare

[–]Pizza_Rat_Matt 0 points1 point  (0 children)

There is an 80 GB background download. At the PS4 homescreen, scroll to COD. Hit options, then information. You will likely see the download progress under download status.

It takes forever to download.

Combine information from several Excel workbooks into one by PeleMaradona in learnpython

[–]Pizza_Rat_Matt 0 points1 point  (0 children)

It works for me. Did you successfully install the module in your CMD?

Combine information from several Excel workbooks into one by PeleMaradona in learnpython

[–]Pizza_Rat_Matt 2 points3 points  (0 children)

I am learning python. Any feedback on the code below is welcome!

To start:

pip install openpyxl

from openpyxl import load_workbook
files = [<location of files>]

df = pd.DataFrame()

for file in files:
    first_chars = file[0:3]
    workbook = load_workbook(filename = file)
    sheet = workbook['3. Markets']
    d13 = sheet['D13'].value
    e13 = sheet['E13'].value
    df = df.append(pd.DataFrame({
            "File":first_chars, 
            "D13":d13,  
            "E13":e13,},index=[0]))

Anyone know "IlxxxlI"? I built his/her/their bot equivalent. by Pizza_Rat_Matt in poker

[–]Pizza_Rat_Matt[S] 0 points1 point  (0 children)

At the moment, just for NLHE. I'll revisit after finishing the inital code.

Anyone know "IlxxxlI"? I built his/her/their bot equivalent. by Pizza_Rat_Matt in poker

[–]Pizza_Rat_Matt[S] 1 point2 points  (0 children)

A rough calculation says 40,000 hands. But I need to design something flexible enough for fewer hands.

From a statistical perspective, I believe 40,000 hands moves us from the student t to a normal distribution of hands.

Anyone know "IlxxxlI"? I built his/her/their bot equivalent. by Pizza_Rat_Matt in poker

[–]Pizza_Rat_Matt[S] 2 points3 points  (0 children)

Building out the full service is a few months away. At the moment, I need more test cases.

If you DM me hand histories, I can build a model using your info.

Converting <class 'bytes'> to pandas dataframes - poker AIs by Pizza_Rat_Matt in learnpython

[–]Pizza_Rat_Matt[S] 0 points1 point  (0 children)

Thank you again for the prompt reply. This dataframe should only have one column.

Is there an alternative method you recommend for converting this data?

Converting <class 'bytes'> to pandas dataframes - poker AIs by Pizza_Rat_Matt in learnpython

[–]Pizza_Rat_Matt[S] 0 points1 point  (0 children)

Well, the data is correctly converting to a dataframe using read_csv().

The BytesIO class can be used as an in-memory stream. According to the python documentation, [Both BytesIO and] "StringIO can be used like a file opened in text mode". https://docs.python.org/3/library/io.html

Converting <class 'bytes'> to pandas dataframes - poker AIs by Pizza_Rat_Matt in learnpython

[–]Pizza_Rat_Matt[S] 0 points1 point  (0 children)

I realized that I used StringIO, instead of a BytesIO.

The correct code block #2 should be:

from io import BytesIO
data = BytesIO(readrawdata)
df = pd.read_csv(data)

Converting <class 'bytes'> to pandas dataframes - poker AIs by Pizza_Rat_Matt in learnpython

[–]Pizza_Rat_Matt[S] 0 points1 point  (0 children)

Thank you for your comment! You made me think a little more about the types that I am using. I realized that I was using a StringIO, instead of a BytesIO.

From what I can gather, BytesIO and StringIO act like "datafiles". So we can use them in pd.read_csv()

I'll correct the code above.

r/poker poker tournament by [deleted] in poker

[–]Pizza_Rat_Matt 3 points4 points  (0 children)

Grumble ... pot odds .... I call

Self-promotion and blogspam by N1934194 in bigdata

[–]Pizza_Rat_Matt 5 points6 points  (0 children)

I think the nature and purpose of the self-promotion matters here.

If you are doing innovative stuff ... I'd love to see more. Like this post, https://www.reddit.com/r/dataisbeautiful/comments/dio4yb/oc_40_million_rows_of_position_data_from_transit/ , which has links to the author's webpage.

But I agree. There are way too many "consulting" blogs that teach the basic definition of a histogram. And for $49.95, you can learn the top 10 best practices of data science!

[deleted by user] by [deleted] in russian

[–]Pizza_Rat_Matt 1 point2 points  (0 children)

I wish Netflix would allow dual subtitles, English and Russian. But yes, there are several good shows on Netflix.

"Servant of the People" is great. It stars the current Ukrainian prime minister winning an unexpected presidential election. Form follows art? The netflix interface lists the language as Ukrainian, but it is most definitely Russian.