Git Product home page Git Product logo

Comments (5)

mataddy avatar mataddy commented on August 28, 2024 2

Soon! Chapters are with production now. I'd say summer if I'm optimistic.

from bds.

mataddy avatar mataddy commented on August 28, 2024 1

Soon! It's with production, so hopefully early 2022.

from bds.

mataddy avatar mataddy commented on August 28, 2024

@shane-kercheval many thanks for this. Apologies for the delayed reply, I'm revising the book for a new addition (will be pretty cool; we're making it into a much more readable full-service text) and I just got to this section for revision.

You are absolutely correct! I got the order of operations mixed up and the plot descriptions also. The fixed analysis script is:

`
library(data.table)
ebay <- as.data.table(ps)
ebay <- ebay[,list(ssm.turns.off=mean(1-search.stays.on),
revenue=mean(revenue)),
by=c("dma","treatment_period")]
setnames(ebay, "treatment_period", "post.treat")
ebay <- as.data.frame(ebay)
head(ebay)

run the DiD analysis

did <- glm(log(revenue) ~ ssm.turns.off*post.treat, data=ebay)
coef(did)

library(sandwich)
library(lmtest)
coeftest(did, vcov=vcovCL(did, cluster=ebay$dma))`

Results are exactly you describe. I've also attached updated draft section in case you are curious. Comments/errata are highly welcome :-)
draft.pdf

from bds.

joshualeond avatar joshualeond commented on August 28, 2024

@mataddy, maybe not the best place for this question but do you have an idea of when the 2nd edition could be released? Thanks!

from bds.

joshualeond avatar joshualeond commented on August 28, 2024

I'm at risk of being a bit obnoxious here on Github but was curious if there was an update on the 2nd edition?

from bds.

Related Issues (16)

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.