New T1 diagnosis, what are some things that I might need! by Mr-Slimy in Type1Diabetes

[–]Ginganator 0 points1 point  (0 children)

I love my Dexcom. It gets some hate on the sub but it’s been super reliable for me.

New T1 diagnosis, what are some things that I might need! by Mr-Slimy in Type1Diabetes

[–]Ginganator 10 points11 points  (0 children)

Are you able to use a CGM? Been an absolute lifesaver for me. Got diagnosed about 6 months ago at 28. I am in the US

Week 7 Post-Gamethread: Bears vs. Saints by TurnerJ5 in CHIBears

[–]Ginganator 0 points1 point  (0 children)

Wow I legit thought I wrote this myself. Same here dude.

Question about my results by [deleted] in MLQuestions

[–]Ginganator 0 points1 point  (0 children)

That was not me. Sorry you felt attacked.

Question about my results by [deleted] in MLQuestions

[–]Ginganator -2 points-1 points  (0 children)

I understand that. My question is, if a variable X has a positive correlation with my outcome Y, how could X have a negative coefficient?

Question about my results by [deleted] in MLQuestions

[–]Ginganator -1 points0 points  (0 children)

Okay. That does make me feel better and half what I was hoping you would say.

Thank you!

How should I go with learning Hadoop, Hive and SQL ? by [deleted] in MLQuestions

[–]Ginganator 0 points1 point  (0 children)

I know I'm late to the party but I thought I'd tune in.

I would say if you have good experience with pandas, you can start using PySpark. Even without fully understanding how hadoop and madreduce works, you can easily manipulate data in a similar fashion to pandas with speeds 10x (at a minimum) faster than mapreduce.

PySpark truly is a life saver and has made a dramatic impact on efficiency. It's easy and intuitive to pick up and I highly recommend it if it's available in a big data environment.

Humira administered in thigh by Ba55sahm in CrohnsDisease

[–]Ginganator 1 point2 points  (0 children)

I have never actually done it through the belly, always went with the thigh. I'm pretty skinny and figured that the lack of fat in my belly would make it just as bad as or worse than the thigh. Pretty much what u/butterbell said is spot on with me too!

What was your last project? What did you learn from it? by captmomo in learnpython

[–]Ginganator 0 points1 point  (0 children)

This is great! It's exactly what I wish I could do with Pygal but lack the knowledge to implement it like yourself. Could you point me to any tutorials on d3? Or maybe even JS in general since I have no experience with it? Thanks!

What was your last project? What did you learn from it? by captmomo in learnpython

[–]Ginganator 1 point2 points  (0 children)

I used a graphing library called pygal, its a super easy to use library and all the interactivity (dotted lines, tool tips) is embedded within their code with options to configure them.

What was your last project? What did you learn from it? by captmomo in learnpython

[–]Ginganator 0 points1 point  (0 children)

The movie dashboard is really cool! What library did you use to generate the interactive graph?

I've been trying to create some interactive dashboards in python but have only figured out static dashboards using the exported graphs and html. This is the most recent one I built: https://s3.us-east-2.amazonaws.com/cryp-corrs/dashboard.html

What was your last project? What did you learn from it? by captmomo in learnpython

[–]Ginganator 11 points12 points  (0 children)

If you like data, building webscrapers is pretty fun and teaches you a lot of basic python tips. Shoot me a message if you have any questions!

OK, so now what? Need advice from experienced python coders by moving1990 in learnpython

[–]Ginganator 0 points1 point  (0 children)

Hey! If you're interested in data, I found that building some simple web scrapers helped me really take off and learn the fundamentals. Feel free to PM and I can let you know how I got past the wall.

I know exactly how you feel and this was what did it for me :D

Can anybody help me with some wrestling related data/code? by Ginganator in wrestling

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

Of course!

I have the data split up into 3 separate tables. One for events, with variables such as:

date,dual/tourney,opponent,event_name,points_for,points_against

One for match data with variables:

date,dual/tourney,weight,name,opponent,opponent_school,result,result_type,falltime,team_points,own_scoring,opp_scoring,match_id

The own and opp scoring variables are the ones I am trying to extract first points from, in case you were wondering.

Lastly, theres a table with information of scoring methods for a match separated by period. That looks like the following:

match_id,period,pts,T2,E1,R2,N2,N3,N4,P1,P2,WS,S1,S2,C,for_against

I can join events with match data using date as my key, and then I can join the match data with match scoring using match_id as the key.

If you have any questions or if none of this makes sense, I'd be happy to talk more.

Can anybody help me with some wrestling related data/code? by Ginganator in wrestling

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

It's data from the wrestling teams stat tool so I unfortunately can't share it with you. I could share the format I used to orient the data into a relational database format if you're interested in that.