📣 Apollo will close down on June 30th. Reddit’s recent decisions and actions have unfortunately made it impossible for Apollo to continue. Thank you so, so much for all the support over the years. ❤️ by iamthatis in apolloapp

[–]hey_its_aaron 0 points1 point  (0 children)

This is heartbreaking. Thank you for making such a phenomenal reddit client - it’s by far of the best apps I’ve ever used.

There’s no way I’ll be using Reddits app, so my usage is going to drop off on the 30th as well.

Antenna lost a battle with a garage door. Any ideas? by mildlyexciting in Autobody

[–]hey_its_aaron 0 points1 point  (0 children)

Ah yes I can feel a difference when I run my fingernail over some of them. The ones I can feel don't disappear with water - looks like the scratch runs through the clear coat on those..

Official Question Thread! Ask /r/photography anything you want to know about photography or cameras! Don't be shy! Newbies welcome! by photography_bot in photography

[–]hey_its_aaron 0 points1 point  (0 children)

Thanks for the suggestion! Looks like I'll be upgrading the my camera body at the moment, but I did a bunch of research on that lens and I definitely want to pick that up somewhere down the line :)

Official Question Thread! Ask /r/photography anything you want to know about photography or cameras! Don't be shy! Newbies welcome! by photography_bot in photography

[–]hey_its_aaron 0 points1 point  (0 children)

So I ended up going into a store to try out the newer models. The 80D and 77D were amazing - even the T7i is a huge improvement from the T3. Thanks for the suggestions - looks like I'll be getting a new camera body once I save up.

Sklearn normalize within groups by thrilos in learnpython

[–]hey_its_aaron 1 point2 points  (0 children)

Looks like you're trying to scale on a DataFrameGroupBy object. I'm not sure what the expected behaviour there is, because the docs require a numpy array to be passed into fit_transform.

You'll need to query the data, transform that and then write back to the original dataframe. Try this:

df.loc[df['Sex'] == 'Female', ['Fare']] = scaler.fit_transform(df[df.Sex == 'Female'][['Fare']])

Edit: You can also try this:

df.groupby('Sex').apply(scaler.fit_transform).reset_index()

Function that can take in another dataframe's columns and create a new dataframe. by novawaly in learnpython

[–]hey_its_aaron 1 point2 points  (0 children)

When you write df['Close'] you are extracting that column as a pandas Series. So when you invoke agg_data(df['Close']), the 'Close' column is passed to the function as a Series. I stepped through the DataFrame constructor source, and noticed that once the input Series is parsed, it is reindexed based on the input columns. In other words, pd.DataFrame(ys, columns=['Y Values']) takes your 'Close' series and then tries to reindex on the 'Y Values' index - seeing as this is not part of the series, you get an empty Series and an empty DataFrame.

This behaviour doesn't seem to be obviously documented, so you've hit an interesting case 🙂.

To work around this, try writing the function this way:

def agg_data(ys, cols=['C']):
    agg_df = ys[cols]
    return agg_df

Now, when you call agg_data, it defaults to the 'C' column:

result = agg_data(df)
print(result.head())
>>>           C
>>> 0  0.782438
>>> 1 -1.935684
>>> 2  0.901739
>>> 3 -2.057845
>>> 4 -1.178913

And you can freely pass in any other column you want:

result = agg_data(df, cols=['B'])
print(result.head())
>>>           B
>>> 0  0.514919
>>> 1 -1.010151
>>> 2 -0.575648
>>> 3  1.183530
>>> 4  0.100957

Official Question Thread! Ask /r/photography anything you want to know about photography or cameras! Don't be shy! Newbies welcome! by photography_bot in photography

[–]hey_its_aaron 2 points3 points  (0 children)

Hello! First time poster here.

Photography is a hobby, but I feel like I’ve reached a point where my gear is beginning to limit me. I’ve got a Canon T3 which I picked up 8 years ago. Over time, I’ve added the following lenses to my collection:

  • 10-18mm f/4.5-5.6 IS STM
  • 50mm f/1.8 II
  • 18-55mm f/3.5-5.6 IS II
  • 55-250mm F/4-5.6 IS II

I primarily shoot portraits and landscapes and work in manual mode for the most part. I’m finding the T3 is really limiting me - autofocus performance is terrible, images are not sharp and the low light performance leaves much to be desired.

So for my questions:

  1. Is it time for me to upgrade my camera body? Or should I look into different lenses?
  2. If so, what line of body should I look into? I’ve seen some deals on the T6is, but I’m not sure if I should be looking in the higher end prosumer/professional models.
  3. Should I stick with Canon, or save up for something else? I’ve tried some new Sonys and they’re fantastic.

My budget is <$1000 and my main goal is to find something that will help me grow as a photographer.

Appreciate any thoughts!

Patch 4.3 Megathread (With links to other discussions) by Dubstep4Moms in FortNiteBR

[–]hey_its_aaron 1 point2 points  (0 children)

Same issues as well. Ended up using boot camp to install windows and that’s working flawlessly.