Coder Social home page Coder Social logo

Comments (4)

joshualande avatar joshualande commented on September 27, 2024

To be clear, the output is:

> df <- data.frame( x = c(1, 2), y = c(3, 4))
> spread(df, x, y) 
   1  2
1  3 NA
2 NA  4

I would have expected the output to have one row:

   1  2
1  3  4

from tidyr.

alexbbrown avatar alexbbrown commented on September 27, 2024

Me too: in the absence of an identifying column it should all be assumed to have the same identifier. This is important in nested (group) processing. Right now it's necessary to ungroup before spread to bring the identifiers into scope.

from tidyr.

kleinschmidt avatar kleinschmidt commented on September 27, 2024

I've also just run into this (tidyr 0.3.1). @hadley, can you weigh in on whether this is a bug or expected behavior?

FWIW I was trying to use spread on the output of broom::tidy to get the estimate values into a single row with columns named for term, as in:

library(tidyr)
library(broom)
library(dplyr)

d <- data_frame(x = runif(100, 0, 10),
                y = 5 - x + rnorm(100))

d %>%
  lm(y ~ x, data=.) %>%
  tidy() %>%
  select(term, estimate) %>%
  spread(term, estimate) %>%
  mutate(x_intercept = -`(Intercept)` / x)
#>   (Intercept)         x x_intercept
#> 1    5.148648        NA          NA
#> 2          NA -1.010463          NA

d %>%
  lm(y ~ x, data=.) %>%
  tidy() %>%
  select(term, estimate) %>%
  mutate(dummy='') %>%
  spread(term, estimate) %>%
  mutate(x_intercept = -`(Intercept)` / x)
#>   dummy (Intercept)         x x_intercept
#> 1          5.148648 -1.010463    5.095337

Seems like a perfectly good use case for tidyr + broom so I was surprised.

from tidyr.

hadley avatar hadley commented on September 27, 2024

More illuminating example:

data_frame(
  key = c("a", "b", "c"),
  value = c(1, 2, 3)
) %>%
  spread(key, value)

This is definitely a bug

from tidyr.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.