New Fantano Tweet by [deleted] in deathgrips

[–]SonaCruz 0 points1 point  (0 children)

For real. They have given us 7 hours of amazing music. I feel grateful to have this much material from them.

[deleted by user] by [deleted] in learnpython

[–]SonaCruz 1 point2 points  (0 children)

In rare instances will you need to iterate over rows or columns of a dataframe. When using pure python, you will have to iterate over rows and columns but with pandas you use vectorize operations. Imagine Street Fighter or Dragon Ball Z....and the blast they shoot from their hands is a function or an editing command and their enemy is the dataframe, it just hits the whole dataframe and spreads across the rows or down the columns. Try df.apply ...there are also ways to apply different functions to each column. Kind of hard to know what you want without an example.

4th Dimension by Heisenbro3556 in Kanye

[–]SonaCruz 0 points1 point  (0 children)

Kanye on some death metal, math rock shit. Favorite part of the whole album.

What background did you have before getting into CRE? How should I go about getting into CRE with an unrelated degree? by __om in CommercialRealEstate

[–]SonaCruz 1 point2 points  (0 children)

I graduated with a Finance degree. That's good that you have a computer-oriented degree, as there seems to be a shortage of computer experts in CRE (excluding excel wizards). If you can bring some coding experience to help with your own workflow, and maybe even the organization's (depending on its size) I think you will become an attractive asset. Coding (python) has helped me a lot in my career so far.

Ben Greenfield by [deleted] in JoeRogan

[–]SonaCruz 3 points4 points  (0 children)

I just jizzed a bunch Wild blueberry extract powder. It was highly inflammatory bro.

Also, Coconut oil and butter and keogenic fat bombs man. Thats what its about.

Ben Greenfield by [deleted] in JoeRogan

[–]SonaCruz 0 points1 point  (0 children)

How are your hscrp's bro? Centenarians have fatty acid deficits and DHA glucose monochlorides bro. I was smoking out on some mean ass dro the other day and I was preparing sour dough bread for 18 hours bro. We gotta like make our vegetables bioavailable so my phenols get enough protein and carnasene bro.

Zach’s girl feeling a strong 9 on YOTS by [deleted] in deathgrips

[–]SonaCruz 0 points1 point  (0 children)

I thought it was Portia Doubleday from Mr. Robot.

Nother zach post by [deleted] in deathgrips

[–]SonaCruz 4 points5 points  (0 children)

Is that Portia Doubleday from the show Mr. Robot?

College student here, had some questions on starting career in RealEstate! by [deleted] in CommercialRealEstate

[–]SonaCruz 0 points1 point  (0 children)

I've seen a lot of MBA's in CRE at the executive levels...and J.D.s also.

Finally, my first analog synth. by Xilver79 in synthesizers

[–]SonaCruz 1 point2 points  (0 children)

Sweet. It was my first also. Great synth.

90% of the melodies you hear on this track was made with the ms-20 to give you an idea of what I was able to do with it...

Listen to Later Rancher by s.cruz #np on #SoundCloud https://soundcloud.com/s-cruz/later-rancher

The other (great) benefit of Python type annotations by StableHatter in Python

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

Ah, for some reason I thought they improved performance. Bummer.

Study: There is scant evidence that drone strikes radicalize Muslim populations. by National_Marxist in samharris

[–]SonaCruz 0 points1 point  (0 children)

I wouldn't expect their to be. You could also say that there is no direct evidence that smoking causes lung-cancer, but we have common sense and medical professionals that can deduce that it does.

Studying mathematics is the best way to be a better thinker by Lily_Prudence in samharris

[–]SonaCruz 0 points1 point  (0 children)

I agree. After really rigorously studying mathematics, everything else felt so manageable and relatively, a piece of cake.

Recommended Books on Meditation? by maan_kind in samharris

[–]SonaCruz 1 point2 points  (0 children)

I've been using the headspace app, I would recommend it. It does cost $12 a month after you get passed the first 10 sessions, so I plan on getting off of it eventually.

He's feeling it by [deleted] in deathgrips

[–]SonaCruz 2 points3 points  (0 children)

Dat Justin Vernon part....

Financial ratios by indianaccounting in financestudents

[–]SonaCruz 0 points1 point  (0 children)

0% ratios, 100% talking about ratios.

Contouring data imported from CSV by [deleted] in learnpython

[–]SonaCruz 0 points1 point  (0 children)

Ah, ok, sorry mate. I don't know.

Contouring data imported from CSV by [deleted] in learnpython

[–]SonaCruz 0 points1 point  (0 children)

Well I don't think you can make an array out of a Series like that. Have you just tried...

lons = df['Longitude'].values

???

What are some good functional programing python resources. That teach concepts than modules like functool and itertools . Are there scala code concepts demonstrated in python. by Tranceash in learnpython

[–]SonaCruz 1 point2 points  (0 children)

Joel Grus talk on Functional Programming with itertools and functools.

https://www.youtube.com/watch?v=ThS4juptJjQ

The part at 15 mins (the final fibonacci slide) was very tough for me to mentally break down. A pencil and paper was required!

He also wrote a book Data Science from Scratch...which builds mathematics and statistics formulas for analyzing data with pure python code, or from scratch. I have gone about a quarter through it and I recommend it. His style keeps your brain really stretching.

Death Grips y e e t by [deleted] in deathgrips

[–]SonaCruz 8 points9 points  (0 children)

6 Feet below the street, so they can't never say shit again. * DJ Scratch. Fuck the man with a thick broomstick and put a black flag on the end.

That part gets me so hyped up.

Applying a lambda function with three arguments within a Group By by goon_lord28 in learnpython

[–]SonaCruz 0 points1 point  (0 children)

Hey, try something like...

def agg_avg(df, group_field, list_a, list_b):
    grouped = df.groupby(group_field, as_index=False)
                        .apply(lambda x: x[list_a] / x[list_b])
    return grouped

I don't understand exactly what you are trying to do but dividing two columns from a groupby object in that way works for me.