This repository has been archived on 2026-05-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Data-Analytics/Assignment IV/Data_Analytics_Fall25_Assignment_4 .md
T
2025-12-08 18:16:50 -05:00

18 KiB
Raw Blame History

Data Analytics Fall 2025 Assignment IV

Measuring How Generative AI Adoption Reshaped Stack Overflow Participation 20182025

Itamar Oren-Naftalovich (6000-Level)


1. Abstract and Introduction

On 30 November 2022, ChatGPT became publicly available. Within days, the Stack Overflow community faced two major shocks: developers suddenly had a new source of code-specific answers, and Stack Overflow introduced a temporary ban on AI-generated content on 5 December 2022 while already struggling with limited (and often terrible) moderation capacity. In this project I will look at whether the combination of generative AI adoption and these policy changes produced a statistically detectable shift in Stack Overflow content creation, and whether developers who say they use ChatGPT still treat Stack Overflow as a daily resource.

My initial hypothesis was that monthly answer counts would show a break after the ChatGPT launch and AI policy ban, even after controlling for the pre-2022 downward trend. I also expected that respondents who explicitly name ChatGPT as an AI assistant would be less likely to visit Stack Overflow daily. To test these ideas, I built two complementary datasets:

  1. A Stack Overflow Data Explorer (SEDE) exports of monthly deleted and non-deleted answers from January 2018 through November 2025
  2. Microdata from the 2023 and 2024 Stack Overflow Developer Surveys, which record both visit frequency and generative AI usage

If you want to see how I did this (the code) see analysis.r

The analysis relies on four modeling strategies: an interrupted time-series (ITS) linear regression, a Poisson regression for counts, a seasonal ARIMA model trained only on pre-ChatGPT data, and a logistic regression relating survey-reported AI usage to daily Stack Overflow visitation. Smashed together, these models indicate that Stack Overflow answer production fell by more than 53% in the post-ChatGPT period (mean 90.5 vs. 193.0 answers per month). At the same time, daily visitors are increasingly concentrated in older age cohorts, and survey respondents who explicitly mention ChatGPT do not differ meaningfully from others in how often they visit the site. The following sections describe the datasets, exploratory patterns, modeling choices, and implications for the community.


2. Data Description and Preliminary Analysis

2.1 Stack Overflow Answer Volume (Dataset 1)

  • Source and Scope data/so_new_answers_per_month_2018_2025.csv is a SEDE export of every new answer (deleted and non-deleted) by month from January 2018 through November 2025 (95 monthly observations). The script standardizes month formats, aggregates across deletion statuses, and adds indicators for the ChatGPT release (30 Nov 2022), the AI policy ban (5 Dec 2022), and the Stack Exchange moderator strike (5 Jun7 Aug 2023).

  • Variables After cleaning, the main table answers_monthly contains answers_total, answers_non_deleted, answers_deleted, calendar year and month, a sequential time_index, binary indicators for the events listed above, and a categorical period flagging pre- vs. post-ChatGPT months. A 3-month moving average (answers_ma3) is computed to smooth short-term noise for exploratory plots.

  • Quality Checks Duplicate rows were removed by grouping on month, and all transformations are recorded in out.log. The only missing values arise in the first two moving-average entries, which plotting functions simply omit. Because SEDE distinguishes deleted from non-deleted answers, the analysis keeps both so that any changes in moderation are visible in the time series.

Figure 1. Monthly Stack Overflow answers with ChatGPT (dashed) and AI policy (dotted) markers. Figure 1. Monthly answer counts follow a long downward trend that becomes steeper after November 2022.

Figure 2. Distribution of monthly answers pre- vs. post-ChatGPT. Figure 2. Box plots highlight the magnitude of the drop between the pre- and post-ChatGPT regimes.

Table 1. Descriptive Statistics by Regime (source: data/answers_summary_period.csv)

period n_months mean_answers median_answers sd_answers min_answers max_answers
pre_chatgpt 59 193.0 185 44.7 122 313
post_chatgpt 36 90.5 88 38.0 11 157

A quick comparison of the six months immediately before and after 30 November 2022 shows only a 10.0% change in average answers, suggesting that the full 53% decline in Table 1 unfolded gradually across 20232025 rather than occurring instantly. This gradual pattern is one reason for using time-series models instead of treating the policy change as a simple before/after difference.

2.2 Stack Overflow Developer Survey (Dataset 2)

  • Source and Scope. The second dataset uses the publicly released 2023 and 2024 Stack Overflow Developer Survey microdata (stack-overflow-developer-survey-2023.zip and stack-overflow-developer-survey-2024.zip, downloaded 19 November 2025). Combined, these files contain 146,676 responses from professional and hobbyist developers worldwide.

  • Schema Harmonization! Column names differ slightly across years (for example, SOAI vs. AISelect), so helper functions search for the first matching column for each concept. The harmonized frame retains year, main_branch, country, numeric age, gender, reported Stack Overflow visit frequency (so_visit), and free-text AI assistant preferences (ai_select).

  • Feature Engineering Two binary indicators are constructed: frequent_so (1 if the respondent reports visiting Stack Overflow daily or multiple times per day) and uses_chatgpt (1 if the string “ChatGPT” appears anywhere in ai_select). Age is grouped into buckets (<25, 2534, 3544, 45+, unknown), and gender is collapsed into a simplified label to absorb inconsistent free-text entries.

  • Sample Considerations Because the 2024 instrument asks about AI search preferences rather than naming specific tools, only 1,181 respondents in 2023 explicitly mention ChatGPT and almost none do in 2024. This change in wording is treated as a measurement artifact and revisited as a source of bias in Sections 3 and 4.


3. Exploratory Analysis

3.1 Seasonal and Trend Patterns in Answer Volume

The answers_monthly series preserves the familiar seasonal dip every December, but the overall level shifts downward after 2022. As Figure 3 shows, even typically slow months such as July now fall below 60 answers, compared with roughly 150220 answers in earlier years.

Figure 3. Seasonality of Stack Overflow answers by calendar month and period. Figure 3. Post-ChatGPT seasons follow a similar seasonal shape but sit on a much lower baseline.

The 3-month moving average in Figure 4 provides additional context. It peaks near 210 answers in mid-2018, drifts below 150 answers by late 2021, crosses under 100 answers in August 2023, and reaches about 23 answers by November 2025. The timing of the Stack Exchange moderator strike (JuneAugust 2023) aligns with the first extended period below 100 answers per month, hinting at compounding effects from generative AI substitution and reduced moderation capacity.

Figure 4. Raw answers (faint) vs. 3-month moving average. Figure 4. The smoothed series marks a clear structural break soon after the ChatGPT launch and policy ban.

3.2 Survey Signals on Engagement and AI Adoption

A stacked bar chart (Figure 5) summarizes how daily Stack Overflow visitation relates to ChatGPT usage. In 2023, daily visitation rates are essentially identical for explicit ChatGPT users (39.1%) and non-users (also 39.1%), suggesting that early adopters of ChatGPT continued to visit Stack Overflow at similar rates while experimenting with AI. By 2024, daily visitation among respondents who do not mention ChatGPT falls to 37.3%. The near-absence of explicit ChatGPT mentions that year, however, is driven by the different survey question wording rather than a real disappearance of the tool. This reinforces the idea that self-reported tool usage is noisy and needs to be combined with behavioral indicators like monthly answer counts.

Figure 5. Share of respondents visiting Stack Overflow daily, split by ChatGPT usage, 2023–2024. Figure 5. Small differences between groups and across years illustrate how limited the AI usage field is for explaining engagement.

3.3 Sources of Uncertainty and Bias

Several sources of uncertainty shape the analysis:

  • Measurement bias. SEDE relies on Stack Overflows internal logging. Deleted answers can be removed retroactively, so counts for the most recent months remain somewhat fluid.

  • Event alignment. The interrupted time-series design treats 30 November 2022 as the breakpoint between regimes, but the 2023 moderator strike and evolving AI policies create overlapping shocks that blur a clean “pre vs. post” distinction.

  • Survey sampling. The developer survey is voluntary, conducted in English, and heavily skewed toward respondents in North America and India. Age and tool usage are self-reported, and the 2024 wording change likely undercounts ChatGPT adoption.

  • Missingness. “Prefer not to say” responses in age and gender are mapped to NA or Unknown, which softens demographic differences in downstream models.

These limitations motivated the use of several modeling approaches in Section 4 instead of relying on a single model family.


4. Model Development and Application of Models

Each model addresses a slightly different question about Stack Overflow activity. All diagnostics and figures are produced directly by analysis.r and saved in imgs/.

4.1 Interrupted Time-Series Linear Regression

  • Specification. The primary linear model is answers_total ~ time + post_chatgpt + chatgpt_time, where time is the number of months since January 2018 and chatgpt_time resets to 1 in December 2022 to allow the post-ChatGPT slope to differ from the pre-ChatGPT trend.

  • Results. The model explains 71.7% of the variance (adjusted R² = 0.708, σ = 35.3). Before ChatGPT, monthly answers were already declining by 0.86 answers per month (p = 0.002). After November 2022, the slope becomes steeper by an additional 2.37 answers per month (p < 0.001). The immediate level change of 18 answers at the breakpoint is not statistically significant (p = 0.24).

  • Interpretation. Rather than a sudden cliff, the data show an acceleration of an existing decline. The post-ChatGPT trend line loses almost three extra answers each month relative to the pre-2023 trajectory, which accumulates to roughly 108 fewer answers per year.

Figure 6. Observed vs. fitted answers under the interrupted time-series model. Figure 6. The fitted line captures a gradual erosion in answer volume instead of a single large discontinuity.

4.2 Poisson Regression for Count Data

  • Specification. The Poisson model uses the same predictors but applies a log link appropriate for count outcomes.

  • Results. The estimated multiplicative time effect before ChatGPT is exp(time) = 0.996 (p < 0.001), corresponding to a 0.4% monthly contraction. After the release, the effective slope multiplier drops to 0.968 (p ≈ 2.7 × 10⁻⁶⁸), implying a 3.2% shrinkage per month. The residual deviance is 713.8 on 91 degrees of freedom, compared with a null deviance of 2,879.9.

  • Interpretation. Expressed in percentage terms, the Poisson model tells a similar story to the linear ITS: by late 2025, the expected answer count decays toward single digits if post-2022 dynamics continue unchanged.

Figure 7. Poisson regression fit vs. observed counts. Figure 7. The Poisson model slightly overestimates the lowest post-2024 points, consistent with some dispersion in the counts.

4.3 Seasonal ARIMA Forecasting (Pre-ChatGPT Baseline)

  • Specification. To estimate what would have happened without ChatGPT and related policy changes, a seasonal ARIMA model, ARIMA(1,1,0)1,0,0, is fit only to data through October 2022 (train_ts). The model then generates forecasts for November 2022November 2025, which are compared to the actual counts.

  • Results. On the training window, fit statistics are solid (RMSE = 32.9, MASE = 0.52). Out-of-sample, however, errors grow large: RMSE = 89.3, MAE = 79.3, MAPE ≈ 172%, and Theils U = 7.11. Observed counts soon fall below the 80% prediction interval and remain there, indicating that historical seasonality and trends alone cannot explain the post-2022 decline.

  • Interpretation. The ARIMA baseline functions as a counterfactual. Its consistent over-prediction of post-ChatGPT activity reinforces the conclusion that a structural break occurred, rather than a continuation of prior dynamics.

Figure 8. ARIMA forecast (trained through Oct 2022) vs. actual counts. Figure 8. Actual activity diverges from the ARIMA forecast almost immediately and never returns to the predicted band.

4.4 Logistic Regression on Survey Engagement

  • Specification. The survey-based model predicts frequent_so (daily or multiple-times-per-day visitor). Predictors that retain more than one level after cleaning are uses_chatgpt, age_group, and year. The harmonized gender variable collapses to a single Unknown level and is therefore dropped automatically. The data are split 80/20 into training and test sets with a fixed seed (123). The decision threshold is set to the training positive rate (0.384) to reduce the impact of class imbalance.

  • Results. Relative to respondents younger than 25, the odds ratio for the 2534 group is 1.04 (p = 0.008), while the 3544 and 45+ groups have odds ratios of 0.81 and 0.71, respectively (both p < 10⁻³²). The ChatGPT usage indicator has an odds ratio of 0.99 (p = 0.92), effectively indistinguishable from 1. The 2024 indicator yields an odds ratio of 0.92 (p ≈ 2.2 × 10⁻¹¹), pointing to a modest overall decline in daily visitation from 2023 to 2024.

    On the 29,336-observation test set, the confusion matrix reports 7,560 true negatives, 10,549 false positives, 4,009 false negatives, and 7,218 true positives, giving an accuracy of 50.4%, precision of 40.6%, and recall of 64.3%.

  • Interpretation. The weak predictive performance and scarcity of explicit ChatGPT mentions in 2024 both suggest that the current survey instrument is not well suited for isolating the impact of AI usage on Stack Overflow engagement. Age shows a clearer pattern than AI usage: older cohorts are less likely to be daily visitors, while ChatGPT adoption, at least as self-reported in these surveys, does not significantly distinguish frequent users from others.

Figure 9. Predicted probabilities of daily Stack Overflow usage by ChatGPT adoption. Figure 9. Predicted probability distributions overlap heavily, mirroring the non-significant odds ratio for uses_chatgpt.


5. Conclusions and Discussion

The evidence points to some sort of structural break in Stack Overflow answer production beginning in late 2022. Average monthly answers drop from 193.0 in the 2018October 2022 period to 90.5 between December 2022 and November 2025. The interrupted time-series model shows the slope of decline by becoming steeper by about 2.37 answers per month after ChatGPTs release, and the Poisson model implies a post-ChatGPT decay rate of roughly 3.2% per month. ARIMA forecasts trained only on pre-ChatGPT data substantially overestimate post-2022 activity, which reinforces the conclusion that pre-existing seasonal and secular trends cannot account for the observed collapse.

The survey-based models show more information about who remains active. Despite common assumptions that ChatGPT usage directly crowds out Stack Overflow visits, the current survey data do not show a strong link: the odds ratio for reported ChatGPT usage is essentially 1, and differences in daily visitation are driven more by age and year than by AI adoption. Given the 2024 wording change and the limitations of self-reported tool usage, it would be premature to claim that ChatGPT users as a group have already abandoned Stack Overflow.

Taken together, these findings suggest that any response from Stack Overflow should combine supply-side interventions (such as incentives for high-quality answers and additional moderation support to limit deleted content) with better measurement of how developers actually integrate AI tools and community Q&A into their workflows.

Future work could extend the time-series models with covariates for major product changes (e.g., Collectives, Discussions), incorporate question volume alongside answers, and revisit the survey analysis once the 2025 instrument becomes available. Causal impact methods, such as Bayesian structural time series using the ARIMA forecast as a prior, could offer a more formal estimate of the counterfactual number of answers that would have been produced without the post-2022 shocks.


References

  1. Stack Exchange Data Explorer. “New answers (deleted + non-deleted) per month,” query exported 19 Nov 2025 from the Stack Overflow SEDE interface.
  2. Stack Overflow. “Stack Overflow Developer Survey 2023” and “Stack Overflow Developer Survey 2024,” datasets accessed 19 Nov 2025 from the Stack Overflow survey site.
  3. OpenAI. “Introducing ChatGPT,” OpenAI Blog, 30 Nov 2022.
  4. Stack Overflow Meta. “Temporary policy: ChatGPT is banned,” Meta Stack Overflow, 5 Dec 2022.
  5. Stack Exchange. “Moderator Strike: Stack Overflow, Stack Exchange Network,” Meta Stack Exchange updates, JunAug 2023.