Skip to content
View danweitzel's full-sized avatar

Highlights

  • Pro

Organizations

@notnews
Block or Report

Block or report danweitzel

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. notnews/hard_news notnews/hard_news Public

    The Softening of Network Television News

    R 2

  2. ccdp_transformed ccdp_transformed Public

    This repository holds code and data for a data transformation of the Comparative Campaign Dynamics Project data set.

    R

  3. Example of transformation for event ... Example of transformation for event df merge
    1
    library("tidyverse")
    2
    
                  
    3
    df_event <- data.frame(country = c("A", "A", "B"),
    4
                           event = c(1,0,1),
    5
                           min_date = c(1990,1994,1993),
  4. Change indicator Change indicator
    1
    ## Load the library
    2
    library("tidyverse")
    3
    
                  
    4
    ## Generate a fake data set with two countries, six years, and a changing indicator
    5
    df <- tibble(country = rep(c("A", "B"), each = 6),
  5. aussda_api aussda_api Public

    Quick explanation on how to access AUSSDA data through the dataverse API

    3