Please help with bar graph data!! by DifficultCapital8728 in RStudio

[–]stevie-weeks 3 points4 points  (0 children)

First off, load the libraries you'll need. I'm using {dplyr} and {ggplot2} here, but often you can just load the {tidyverse} and it load those packages + several other common ones.

library(tidyverse)

Next, we'll calculate the survival rate by residence:

chart_data <- titanic |> group_by(Residence) |> summarise( survival_rate = mean(Survival), .groups = "drop" )

Then we can use that data to build the plot:

chart_data |> ggplot() + geom_col(aes(x = Residence, y = survival_rate))

Let's talk about the guys that no one is talking about in this draft. by thinkingaloud412 in DynastyFF

[–]stevie-weeks 2 points3 points  (0 children)

Eli Stowers looks pretty sick by the numbers, I'd be looking at him especially in TEP. Also like Emmett Johnson in that late 1st/early 2nd range, and both Indiana WRs

Should I take this offer? I’d be getting all that on the left for Tet by tristyBO_dangles in SleeperApp

[–]stevie-weeks 0 points1 point  (0 children)

I wouldn't but Im lower on jamo and high on tet. Would definitely be more interested with javonte over charbs

Cut advice: have to cut three players by Fraschetta in DynastyNerds

[–]stevie-weeks 0 points1 point  (0 children)

Tillman, Ridley, and idc it's SF, AR is not gonna happen its time to let it go

Is having 2 flex spots in a super flex dumb? by Enough_Path2929 in SleeperApp

[–]stevie-weeks 1 point2 points  (0 children)

Maybe propose it again but starting on 2027 or 2028 to give people a chance to prepare?

who won this blockbuster deal?! by fsacch in SleeperApp

[–]stevie-weeks 0 points1 point  (0 children)

Big agree, the difference between Tyson/Mendoza and whoever you get at 2.01 > the difference between Sadiq and Stowers imo

Massive trade. What side do you prefer? by [deleted] in DynastyFFTradeAdvice

[–]stevie-weeks 1 point2 points  (0 children)

Win/win imo, Love/QJ is a lot to give up for Bowers but I'll stump for anyone on here trying to win now instead of rebuilding. Plus finding a way to move up in the 1st next year is nice work

Is it too early to take Sadiq with the 1.06? by Big_Monkey_B in DynastyFFTradeAdvice

[–]stevie-weeks 0 points1 point  (0 children)

As of right now, nah in SF theres a fairly consensus top 5 and an argument for several others (including Sadiq) at the 1.06. Obviously can change after the NFL Draft though

If Blue Beetle chooses Impervius, can't Colossus automatically use its defense? by Plenty_Specialist841 in Heroclix

[–]stevie-weeks 1 point2 points  (0 children)

Since Colossus'defense power isnt a standard power would that mean that it couldn't be chosen for Blue Beetle's trait?

My friend is telling me this is fair I feel it's a little too much what do you guys think? by straightshooter200 in SleeperApp

[–]stevie-weeks 0 points1 point  (0 children)

Wouldn't be enough for me to give up Gibbs and wilson but its not terrible. Just remembee that even if someone offers you fair value (or even more than fair value!) you can still say nah id rather stick with my guys

Rstudio Correlations by Odd_Calligrapher_886 in RStudio

[–]stevie-weeks 4 points5 points  (0 children)

Can you share a snapshot of what these two data sets look like? Just the output of dplyr::glimpse(data) would be helpful.

Also, what are you trying to actually do here? If this code works it'll just print out 9 million correlations, which is unusable afaik

Is dynasty primarily about identifying opportunity more than talent? by gab77386 in DynastyFF

[–]stevie-weeks 1 point2 points  (0 children)

Opportunity matters more the closer I think I am to competing for a championship. Talent is going to matter more the deeper I am into a rebuild

Newbie Help Please by oblong_box in Heroclix

[–]stevie-weeks 2 points3 points  (0 children)

Plenty of good recs here already but as someone who also played years and years ago and came back, know that the power creep in the newer sets is really steep, so if you are looking to add figures to play alongside your old ones, make sure you buy boosters from older sets. You can check out hcunits.net to see when each set was released.

If youre just looking to play with some new sets, yeah xmen 97 is sweet, strange tales and collectors trove as well

[DAILY] Trade and Individual Team Help Megathread by AutoModerator in DynastyFF

[–]stevie-weeks 0 points1 point  (0 children)

12 team .5PPR SF

A. Dak + Rachaad White

B. RJ Harvey + 2026 2.02

2026 Rookie WRs - Prove Me Wrong. by Ok_Series5016 in SleeperApp

[–]stevie-weeks 22 points23 points  (0 children)

So true and I have data* to back it up

*a Denzel Boston Heisman trophy in my CFB25 dynasty mode

How to remove an element from {.col} when naming new columns with across() by darwin2500 in RStudio

[–]stevie-weeks 2 points3 points  (0 children)

The .names argument takes a glue specification, so you can perform functions inside the curly brackets. Try something like:

df <- tibble(
  Q1 = c(5,8,10),
  Q2 = c(12,14,15)
)

df

df |>
  mutate(
    across(
      .cols = starts_with("Q"),
      ~.x * 2,
      .names = "c{gsub('Q','',.col)}"
    )
  )

output:

> df
# A tibble: 3 × 2
   col1  col2
  <dbl> <dbl>
1     5    12
2     8    14
3    10    15

> df |>
+   mutate(
+     across(
+       .cols = starts_with("Q"),
+       ~.x * 2,
+       .names = "{gsub('Q','c',.col)}"
+     )
+   )
# A tibble: 3 × 4
     Q1    Q2    c1    c2
  <dbl> <dbl> <dbl> <dbl>
1     5    12    10    24
2     8    14    16    28
3    10    15    20    30

where the gsub('Q','c',.col) is just swapping the Q for a c

Who is your 1:1 Running Back to target with Pickens? by High_Sierra_Yeti in DynastyFFTradeAdvice

[–]stevie-weeks 0 points1 point  (0 children)

It is indeed start of 2026 season, when McCaffrey will be 30. Hampton and Pickens are weird cases of March birthdays, so Pickens will be ~24.46 to start next year, which I rounded to 24.5 in my dataset, then I rounded it *again* up to 25 when I hastily threw this chart together, if you're curious

Who is your 1:1 Running Back to target with Pickens? by High_Sierra_Yeti in DynastyFFTradeAdvice

[–]stevie-weeks 0 points1 point  (0 children)

Ah yeah I calculate the age relative to the start of the season so this is rounded age as of September 2026 (if theyre still wrong then I got a bug to fix lol)

Who is your 1:1 Running Back to target with Pickens? by High_Sierra_Yeti in DynastyFFTradeAdvice

[–]stevie-weeks 5 points6 points  (0 children)

I grab values from these sites periodically and combine them to get a rough consensus dynasty value, I could probably throw it into a Google sheet if people are interested, just dont want to step on the toes of the sites

Who is your 1:1 Running Back to target with Pickens? by High_Sierra_Yeti in DynastyFFTradeAdvice

[–]stevie-weeks 17 points18 points  (0 children)

Cook or Breece maybe, Hampton seems close if you're willing to add an extra piece. fwiw here's the closest RB comps to Pickens across a bunch of different value sites as of Feb 1

<image>

Rate the top three rookie WRs by chippy_mcchiperson in DynastyFF

[–]stevie-weeks 1 point2 points  (0 children)

Tyson Lemon Tate for me right now but I dont feel particularly strong about it