Factors Associated with Disposition Timing in Appellate Court

Predictive Analytics for Nevada Appellate Timing
A report by Joanna Ronchi, Analyst.


 Advertisement  Advertisement 

Factors Associated with Disposition Timing in Appellate Courts

Joanna Ronchi, Data Analyst;
Jun 19, 2026, 9:00 AM

Research Question To what extent do observable case characteristics explain variation in appellate disposition timing? Null Hypothesis Observable case characteristics, including appellate court assignment, case type, outcome group, and proper-person status, are not significantly associated with appellate disposition timing. Alternative Hypothesis At least one observable case characteristic, including appellate court assignment, case type, outcome group, or proper-person status, is significantly associated with appellate disposition timing. Context Nevada's appellate court system changed in 2014, when the legislature created the Nevada Court of Appeals. Before 2014, the Nevada Supreme Court handled all appeals filed in the state. The Court of Appeals was established to help manage increasing caseloads and improve the timely resolution of appeals (Clark County Bar Association, 2025). Because appellate decisions affect litigants, families, businesses, and the government while legal disputes are pending, understanding appellate timing remains an important operational and public policy concern. Nevada appellate courts hold extensive public records, including filing dates, disposition dates, case classifications, and appellate outcomes. These records provide an opportunity to examine how appeals move through the judicial system and whether certain case characteristics are associated with longer or shorter disposition periods. Although these records are publicly available, they are not organized for large-scale analytical evaluation. As a result, relatively little empirical information exists regarding the factors associated with appellate disposition timing. Recently, the Nevada Supreme Court issued a 2026-2028 Strategic Plan identifying predictive analytics, workload planning, and performance management as important priorities for the state's judiciary (Nevada Judiciary, 2026). Studying the timing of appellate dispositions provides an opportunity to understand how appeals move through the system and whether certain case characteristics are consistently associated with longer or shorter timelines. Data Sources The Nevada Judiciary provides public access to individual appellate case records through its online case management system. However, the system functions primarily as a case-by-case search tool and does not provide a downloadable statewide dataset suitable for analysis. The dataset used in this study was collected from publicly available records maintained by the Nevada Supreme Court and the Nevada Court of Appeals (Nevada Judiciary, n.d.,-b). Because no single statewide dataset existed that contained the information needed to evaluate appellate disposition timing, the workflow constructed a custom dataset by collecting and integrating records from multiple appellate sources. The four primary collections included: 2023-2026 Published Nevada Supreme Court Dispositions, 2023-2026 Unpublished Nevada Supreme Court dispositions, 2023-2026 Published Nevada Court of Appeals opinions, 2023-2026 Unpublished Nevada Court of Appeals dispositions. Each appellate record contained information about the filing, disposition, classification, outcome, and procedural history of the case. Combining records from the Nevada Supreme Court and Court of Appeals produced a statewide dataset for analysis. The public appellate case records offered an opportunity to examine how cases move through Nevada's appellate system. Because the records contained detailed information about individual appeals, including initial filing and final disposition dates, they supported analyses of disposition timing, final case outcomes (including orders and opinions), court assignment, and other characteristics that may influence how long a case remains pending. The resulting dataset provided a statewide view of appellate case processing across both appellate courts. Challenges of the Chosen Data Collection Method A major advantage of this methodology was flexibility. Collecting data directly from court records enabled the construction of a dataset containing variables not available in existing public reports and the evaluation of relationships among disposition timing, court assignment, case type, and appellate outcomes. Since the Nevada Judiciary does not provide a downloadable statewide dataset, which made large-scale data collection difficult. Selenium automation enabled statewide analysis by directly collecting appellate records from the case-management system and organizing them into structured datasets for analysis. The amount of time required to collect, validate, and prepare the data was a major disadvantage. Because the information originated from multiple sources and publication formats, the data collection process required substantial effort to standardize the data and ensure consistency across the statewide dataset. Data Extraction Process Because no ready-made dataset existed for this analysis, the project relied on direct collection of court records. This approach enabled combining information from multiple sources and creating variables tailored to the study. Collecting the records directly from the courts made that analysis possible. Existing public reports summarize appellate activity but do not provide the case-level information needed to examine how factors such as court assignment, case type, outcome, and representation status relate to disposition timing. The Nevada Appellate Case Management System served as the primary source of appellate records for this study. The system provides access to cases before both the Nevada Supreme Court and the Nevada Court of Appeals, including filing dates, disposition dates, case classifications, docket activity, and other procedural information. Users can locate individual appeals by searching a case number and opening the corresponding case record (Figure 1). Although the system provides detailed information for individual appeals, it does not offer a downloadable statewide dataset suitable for analysis. Researchers must retrieve records one case at a time through the search interface shown in Figure 1. Collecting thousands of appellate records manually would have made statewide analysis impractical. To address this limitation, Selenium automated the collection process and assembled the records into structured source files for further preparation and analysis.

Figure 1. Appellate case management interface used for automated data collection.
Figure 1, 6/19/26, 9:00 AM

Figure 2A. Selenium automation used to query appellate case numbers in the Nevada Appellate Case Management System
Figure 2A, 6/19/26, 9:00 AM

Figure 2B. Extraction of docket-entry information from returned appellate case records
Figure 2B, 6/19/26, 9:00 AM

Figure 2C. Construction of the analytical dataset. This code organized extracted information into a structured dataset.
Figure 2C, 6/19/26, 9:00 AM

Figure 2D. Calculation of disposition timing and export of the analytical dataset
Figure 2D, 6/19/26, 9:00 AM

Summary of Data Extraction Selenium extracted and created more than 90 source files into four collections: Supreme Court (published and unpublished cases) and Court of Appeals (published and unpublished). Before combining these datasets, the workflow confirmed that column structures and collected variables were consistent across the collections. Figures 2A, 2B, 2C, and 2D summarize the automated workflow used to collect records from four appellate data sources. The Selenium browser automation tool enabled scraping thousands of appellate records using the same process across all four data sources (Selenium, n.d.). Without automation, assembling a statewide dataset of this size would have been impractical. For each case number, the script searched the Nevada Judiciary website and retrieved the corresponding appellate record. The process included adjusting the search settings to return complete case histories and collecting the docket information associated with each appeal. The scraping process produced CSV files containing 11 variables for each appellate record. These files served as the starting point for subsequent data preparation, validation, and integration. After Selenium extracted the appellate records, Python stored the collected information in structured CSV files and calculated disposition timing for each record (Figure 3). Additional preparation steps described later in the workflow combined these source files into a statewide dataset for analysis. Preparation of the Master Dataset Preparing the data for analysis proved more challenging than collecting the data from public records. Because the information originated from multiple courts, publication types, and file formats, it required extensive validation and standardization before combining the records into a single statewide dataset. Much of the work involved reconciling differences across sources while preserving the accuracy of the underlying appellate records. Preparing the statewide dataset nv appellate master required more than simply combining records from multiple sources. The process began with resolving duplicate case numbers and identifying the final operative disposition for each appeal. After integrating the records into a statewide master dataset, the workflow validated the data and restricted the population to appeals that received substantive merits review. The final steps involved creating analytical features and performing additional validation checks before analysis and modeling. Data validation challenges included deciding how to handle cases where a single case number appeared multiple times. At first glance, these records appeared to be duplicates (Figure 3).

Figure 3. Example of duplicate case-number records identified during data preparation.
Figure 3, 6/19/26, 9:00 AM

However, closer inspection revealed that many of the repeated case numbers were legitimate appellate activity and not data errors. The research question focused on how long it takes an appeal to reach a final resolution. For that reason, the analysis retained the court's final operative disposition rather than the first disposition entered in the case (Figure 4).

Figure 4. Review and resolution of duplicate case numbers by retaining the final operative disposition for case-level analysis.
Figure 4, 6/19/26, 9:00 AM

An earlier disposition does not always end an appeal, as additional orders may follow, and the parties remain involved in the appellate process until the court issues its final controlling decision (Nevada Judiciary, 2025). Using the final disposition date ensured that disposition timing reflected the full life cycle of an appeal rather than a procedural step that was later modified, amended, or replaced. Combining the four source datasets created a statewide master dataset nv appellate master.csv that served as the basis for subsequent preparation and analysis (Figure 5).

Figure 5. Creation and export of the statewide appellate master dataset
Figure 5, 6/19/26, 9:00 AM

The workflow processed feature engineering in two stages. The first stage constructed the statewide master dataset and focused on preserving procedural information and standardizing records across the four source collections (Figure 6).

Figure 6. Construction of nv_appellate_master dataset.
Figure 6, 6/19/26, 9:00 AM

Validation of this integrated dataset identified 57 records with missing filing dates, two records with missing disposition dates, and 57 records with missing disposition-timing values (Figure 7). Because the statewide master dataset served as an intermediate integration dataset rather than the final analytical population, the workflow did not yet remove any records with missing values at this stage.

Figure 7. Missing values summary in nv_appellate_master dataset following integration of appellate source collections
Figure 7, 6/19/26, 9:00 AM

Preparation of the Final Merits-Case Dataset Not every appellate disposition reflects a decision on the merits of a case. Because this study focused on factors associated with disposition timing among merit decisions, procedural dismissals, and other non-merit outcomes were excluded from further analysis. The resulting dataset included appeals that ended in affirmance, reversal, mixed outcomes, or remand (Figure 8). These cases formed the analytical population used throughout the project. The model predicted disposition timing using case type, appellate court, outcome group, and proper-person status. The scraped appellate records included variables such as initial filing date, disposition date, classification, docket descriptions, and outcome information. During data preparation, the workflow created additional derived variables that did not exist in the source records (Kuhn & Johnson, 2019). These new variables captured procedural events, identified court and publication status, and prepared the data for later analysis and modeling. The statewide dataset contained 5,791 appellate records. Some of those appeals were dismissed before the court reached the legal questions presented in the case (Nevada Judiciary, 2025). Because this study examined disposition timing among appeals that received substantive review, the workflow excluded the dismissed cases from the final analytical dataset. Many dismissed appeals never reach a determination on the underlying legal issues. For example, litigants sometimes attempt to appeal before the district court enters a final appealable order, fail to establish appellate jurisdiction, dismiss the appeal, or otherwise fail to satisfy procedural requirements (NRAP 3A, n.d.). In those situations, the appellate court dismisses the matter without addressing the merits of the claims (Bureau of Justice Statistics, 2006). Limiting the analysis to affirmed, reversed, remanded, and mixed-outcome appeals ensured that the study examined cases that received substantive appellate review (Figure 8).

Figure 8. Final filtered dataset containing only cases disposed based on merit.
Figure 8, 6/19/26, 9:00 AM

The analysis retained only appeals that ended in affirmance, reversal, mixed outcomes, or remand. After applying the filtering criteria, 2,729 appeals remained in the dataset. The study used these appeals to examine disposition timing in a multiple linear regression model, with case type, appellate court, outcome group, and proper-person status as predictors. Validation of the statewide master dataset identified 57 records with missing filing dates, two records with missing disposition dates, and 57 records with missing disposition-timing values (Figure 7). Because the statewide master dataset served as an intermediate integration dataset, the workflow retained these records at that stage. After filtering the data to appeals that received substantive merits review, none of the records containing missing values remained in the analytical population. Validation of the merits dataset confirmed that no records contained missing filing dates, disposition dates, or disposition-timing values (Figure 9). Consequently, the workflow did not require any additional missing-value treatment before exploratory analysis and predictive modeling.

Figure 9. Validation summary for the nv_appellate_merits dataset following merits filtering
Figure 9, 6/9/26, 9:00 AM

None of the missing values identified in the statewide master dataset remained in the final analytical population used for exploratory analysis and predictive modeling. With the merits dataset validated and free of missing values, the second stage of feature engineering focused on creating analytical variables for exploratory analysis and predictive modeling (Figure 10).

Figure 10. nv_appellate_merits engineered features
Figure 10, 6/9/26, 9:00 AM

Multiple Linear Regression Analysis Multiple linear regression is appropriate in this analysis because the target variable is continuous and numeric (Montgomery et al., 2021). The model evaluated the relationships among disposition timing, case type, appellate court, outcome group, and proper-person status while accounting for the influence of the remaining variables. One strength of multiple linear regression is the capability to identify which variables have the strongest relationship with the outcome being studied (James et al., 2021). In this project, the model helped quantify differences in appellate timing across courts, case types, outcomes, and representation status. At the same time, the model could only evaluate information included in the dataset. Appellate cases move faster or slower through the judicial system for many reasons beyond the variables captured in public records. Factors such as case complexity, the scope of the record, procedural developments, legal issues raised on appeal, and overall judicial workload may similarly influence how long an appeal remains pending. Univariate Analysis The analysis first explored the merits-case dataset, one variable at a time, using summary statistics and visualizations (Tukey, 1977). Examining appellate court assignment, case type, outcome group, and proper-person status helped establish the context for the modeling phase. It revealed that some categories experienced substantially different disposition timelines than others. Days to Disposition Histogram and Descriptive Statistics The difference between the mean of 227 days and the median of 116.5 days indicates a right-skewed distribution. A small number of long-running appeals increased the overall average, with disposition times ranging from 1 to 2,373 days (Figure 11).

Days to Disposition
Days to Disposition, 6/19/26, 9:00 AM

Figure 11. How long do Nevada appeals take?
Figure 11, 6/19/26, 9:00 AM

Court Type Histogram and Descriptive Statistics The Court of Appeals decided most of the merits appeals included in the study. Of the 2,729 appeals that received substantive review, 72.1% were resolved by the Court of Appeals and 27.9% by the Nevada Supreme Court. This distribution reflects the Court of Appeals' substantial role in resolving appeals within Nevada's appellate system (Nevada Judiciary, n.d.-a).

Appellate Merits
Appellate Merits, 6/19/26, 9:00 AM

Figure 12. Which court heard these appeals?
Figure 12, 8/5/26, 11:08 PM

Case Outcome Histogram and Descriptive Statistics Eight out of every ten appeals in this dataset ended in an affirmance. In those cases, the appellate court left the lower court's decision unchanged. Reversed, mixed-outcome, and remanded appeals appeared much less frequently throughout the dataset. Given the nature of appellate review, this pattern is not unexpected.

Outcome Counts
Outcome Counts, 6/19/26, 9:00 AM

Outcome Group
Outcome Group, 6/19/26, 9:00 AM

Figure 13. How did appeals end?
Figure 13, 6/19/26, 9:00 AM

Proper Person Histogram and Descriptive Statistics Represented litigants accounted for 69.3% of merits appeals, compared with 30.7% for proper-person litigants. Around seven out of 10 merit appeals originate from represented parties.

Proper Person Summary
Proper Person Summary, 6/19/26, 9:00 AM

Figure 14. Who filed these appeals?
Figure 14, 6/19/26, 9:00 AM

Case Types Histogram and Descriptive Statistics More than half of all merit appeals involved criminal cases, while civil and family appeals accounted for a much smaller share of the dataset. Despite being less common, civil appeals typically remained pending longer than criminal appeals. The evidence suggests that some types of appeals may take longer to process through the appellate system than others.

Case Type Summary
Case Type Summary, 6/19/26, 9:00 AM

Figure 15. What types of appeals were included?
Figure 15, 6/19/26, 9:00 AM

Disposition Timing by Case Type Histogram and Descriptive Statistics Civil appeals generally took longer to reach disposition than criminal and family appeals. Criminal cases had the shortest median disposition time (96 days), while civil cases had the longest (246.5 days).

Case Type Timing
Case Type Timing, 6/19/26, 9:00 AM

Figure 16. How did timing differ by case type?
Figure 16, 6/19/26, 9:00 AM

Disposition Timing by Court Histogram and Descriptive Statistics Appeals assigned to the Supreme Court generally took much longer to reach disposition than those assigned to the Court of Appeals. The median disposition time was 503 days for Supreme Court cases compared to 98 days for Court of Appeals cases.

Court Timing
Court Timing, 6/19/26, 9:00 AM

Figure 17. How did timing differ by court?
Figure 17, 6/19/26, 9:00 AM

Disposition Timing by Outcome Group Histogram and Descriptive Statistics Outcome groups followed different disposition timelines. Appeals that ended in affirmance, where the appellate court left the lower court's decision unchanged (ABA, 2021), reached disposition more quickly than other outcome categories, with a median disposition time of 108 days. Appeals resulting in reversal or mixed outcomes generally remained pending longer. Mixed outcomes, which often involved a combination of dispositions such as affirmed in part and remanded, had the longest median disposition time at 271.5 days. Reversed appeals reached disposition in a median of 210 days.

Outcome Timing
Outcome Timing, 6/19/26, 9:00 AM

Figure 18. Did outcomes follow different timelines?
Figure 18, 6/19/26, 9:00 AM

Disposition by Proper-Person Status Histogram and Descriptive Statistics Appeals involving self-represented (pro se) litigants tended to move through the appellate process more quickly than appeals involving represented parties. The median disposition time was 94 days for proper person appeals, compared with 139 days for represented appeals. However, this difference does not necessarily indicate that self-representation leads to faster dispositions. The appeals pursued by self-represented litigants may differ from those pursued by represented litigants in ways not measured in this study, including the complexity of the issues presented, the scope of the record, and other case-specific factors that could influence disposition timing.

Proper Person Timing
Proper Person Timing, 6/19/26, 9:00 AM

Figure 19. Did self-representation affect timing?
Figure 19, 6/19/26, 9:00 AM

Figure 20. Creation of the modeling dataset
Figure 20, 6/19/26, 9:00 AM

Figure 21. Variable encoding preview
Figure 21, 6/19/26, 9:00 AM

Figure 22. Definition of target and predictor variables
Figure 22, 6/19/26, 9:00 AM

Train-Test Split and Linear Regression Model Training The workflow divided the dataset into 80% training and 20% testing subsets using a fixed random state of 42 (James et al., 2021). A multiple linear regression model was fitted using the training data and subsequently used to generate predictions on the testing dataset.

Figure 23. Definition of target and predictor variables
Figure 23, 6/19/26, 9:00 AM

Evaluating Model Performance The model explained 76.7% of the variation in disposition timing (R² = 0.7665) when evaluated on the test set. The OLS regression produced similar results, explaining around 71% of the variation across appeals (Kutner et al., 2005). Prediction errors averaged 66.67 days, with an RMSE of 101.48 days. Court assignment had the strongest relationship with disposition timing, although case type, outcome group, and proper-person status also contributed to differences in appellate timelines. Taken together, the results suggest that a significant part of appellate delay can be linked to measurable characteristics contained within public appellate records.

Figure 24. R2 model performance
Figure 24, 6/19/26, 9:00 AM

Figure 25. OLS model performance code
Figure 25, 6/19/26, 9:00 AM

Figure 26. OLS model performance output
Figure 26, 6/19/26, 9:00 AM

Figure 27. Regression equation
Figure 27, 6/19/26, 9:00 AM

Interpretation of the Regression Equation The overall regression model was statistically significant (F = 848.9, p < .001), indicating that the observed relationships were not due to chance. The results support rejection of the null hypothesis and indicate that appellate court assignment, case type, outcome group, proper-person status, or some combination of these characteristics influenced disposition timing (Kutner et al., 2005). Together, these measurable case characteristics explained a substantial portion of the variation in how long appeals remained pending. Among all variables included in the model, court assignment showed the largest effect on disposition timing. Appeals assigned to the Nevada Supreme Court were associated with nearly 396 additional days to disposition compared with similar appeals decided by the Court of Appeals. Differences in disposition timing also appeared across case types. Original proceedings and writ matters reached disposition approximately 147.79 days sooner than civil appeals and showed the largest difference among the case-type categories. Criminal appeals reached disposition approximately 64.92 days sooner than civil appeals, while family appeals reached disposition approximately 24.90 days sooner. The outcome group also influenced the timing of disposition. Mixed-outcome appeals were associated with approximately 64.30 additional days to disposition compared with affirmed appeals. Remanded appeals were associated with approximately 9.07 additional days, while reversed appeals were associated with approximately 13.68 fewer days than affirmed appeals. However, the remanded and reversed coefficients were not statistically significant. Proper-person status demonstrated the smallest statistically significant effect. Appeals involving proper-person litigants were associated with approximately 19.27 fewer days to disposition than appeals without proper-person status. The intercept of 158.88 represents the predicted disposition time for a civil appeal assigned to the Court of Appeals, resulting in an affirmed outcome and not involving a proper-person litigant. Model Assumptions Checks Independence of Errors The Durbin-Watson statistic was 1.425, which is somewhat below the ideal value of 2.0 and suggests mild positive similarity between nearby observations (Kutner et al., 2005). However, because this study examined individual appellate cases rather than repeated observations over time. As a result, the statistic did not suggest a meaningful problem with the independence of observations. Multicollinearity One question was whether the predictors were simply measuring the same underlying characteristics. The VIF results suggested otherwise. Values ranged from 1.01 to 1.41, indicating very little overlap among the predictor variables and no evidence of problematic multicollinearity.

Figure 28. Variance Inflation Factors
Figure 28, 6/19/26, 9:00 AM

Residual vs Predicted Values Plot The residual plot showed that prediction errors remained fairly balanced around zero across the range of predicted values (Montgomery et al., 2021). Some increase in variability appeared among appeals with longer predicted disposition times, which was not surprising given the presence of unusually long-running cases in the dataset. Overall, the plot did not reveal a pattern suggesting that the model consistently overestimated or underestimated disposition timing. The residual plots reinforced a pattern seen throughout the analysis. Most appeals followed the timing patterns identified by the model, resulting in relatively small prediction errors (Kutner et al., 2005). Larger errors were concentrated among a small number of unusually long-running appeals.

MatPlotLib
MatPlotLib, 6/19/26, 9:00 AM

Figure 29. Residuals vs. Predicted Values plot
Figure 29, 6/19/26, 9:00 AM

Residual Histogram The residuals clustered around zero, indicating that most appeals followed the model-identified timing patterns. Larger errors were concentrated among a small number of unusually long-running appeals. Because disposition times ranged from days to years, some skewness in the distribution was expected.

MatPlotLib
MatPlotLib, 6/19/26, 9:00 AM

Figure 30. Distribution of Residuals plot
Figure 30, 6/19/26, 9:00 AM

Assess Residual Normality Using Q-Q Plot Most residuals followed the expected normal pattern, with departures occurring primarily among a small number of unusually long-running appeals. Given the substantial variation in appellate disposition times, some deviation in the tails was expected. Overall, the Q-Q plot indicated that the residuals were reasonably consistent with the assumptions of multiple linear regression (Kutner, 2005).

Scipy
MatPlotLib, 6/19/26, 9:00 AM

Figure 31. Q-Q Plot of Residuals
Figure 31, 6/19/26, 9:00 AM

The residuals clustered around zero, indicating that most appeals followed the model-identified timing patterns. Larger errors were concentrated among a small number of unusually long-running appeals. Because disposition times ranged from days to years, some skewness in the distribution was expected. The assumption diagnostic results suggest that the model captured the primary patterns in the data, even though some variability persisted in the most complex or time-consuming cases. One advantage of multiple linear regression is its interpretability. The model predicts disposition timing and helps identify which case characteristics are most strongly associated with longer or shorter appellate timelines. A limitation is that the model can evaluate only the information available in the dataset. Factors such as case complexity, judicial workload, briefing demands, and the legal issues presented on appeal likely influence appellate timing, but these factors were not available in the public records used for this study. Findings One of the most interesting findings was the analysis showed that a relatively small number of observable case characteristics explained much of the variation in appellate disposition timing. Court assignment, case type, outcome group, and proper-person status showed meaningful relationships with disposition timing. Together, these variables explained approximately 71–73% of the differences seen across appeals. The model's explanatory power demonstrates that disposition timing follows a recognizable pattern. While every appeal has its own facts and legal issues, much of the variation in disposition timing can be linked to characteristics available in public appellate records. The fact that these variables explained more than 70% of the observed variation suggests that appellate case processing follows sufficiently stable patterns. However, the dataset did not capture all the nuanced factors that could influence the timing of appellate dispositions. Variables outside the collected data may explain some of the variation that remained outside the model's explanatory power (Kutner et al., 2005). Court assignment explained more variation in appellate disposition timing than any other variable included in the model. Appeals assigned to the Nevada Supreme Court generally required substantially more time to reach disposition than appeals assigned to the Court of Appeals, even after controlling for other case characteristics. Meaningful differences were also seen across case types and outcome groups. Criminal appeals generally reached disposition more quickly than civil appeals, while mixed-outcome cases tended to require longer periods of review. Proper-person status was also associated with differences in the timing of disposition. These results suggest that observable characteristics of an appeal help explain differences in disposition timing. Although the model explained a substantial portion of the variation in appellate disposition timing, some differences among appeals remained unexplained (James et al., 2021). The analysis relied entirely on information available in public appellate records, which limited the variables available for study. Important factors such as issue complexity, record size, briefing demands, oral argument activity, number of parties, and overall judicial workload were not captured in the dataset. As a result, the model could identify broad timing patterns throughout appellate cases but could not account for every factor that may influence how long a particular appeal remains pending. One of the most important observations from this study is that broad case labels do not always reflect the actual complexity of an appeal. Two cases classified within the same category may involve very different legal questions, workloads, and procedural histories. These differences likely account for some of the unexplained variation observed in the model. Practical Applications Researchers and court administrators have studied case-processing times for decades because the length of time required to resolve cases reflects an important aspect of court operations (Steelman et al., 2004). For litigants, appellate delay affects how long they must wait for a final resolution. For courts, disposition timing provides a way to examine case flow patterns and identify factors associated with longer processing times. A practical takeaway from the study is that appellate timing appears far more predictable than many litigants might assume. The analysis showed that much of the variation in disposition timing could be linked to a relatively small number of observable case characteristics. These findings improve understanding of how appeals move through the system and help identify cases at risk of taking longer than expected. At the same time, the remaining unexplained variation suggests opportunities to collect more detailed information about the issues raised on appeal. Court personnel already review those issues during case screening and routing. Capturing that information in a structured format could help explain additional variation in disposition timing while creating a richer dataset for future analysis, workload forecasting, and appellate analytics (Kuhn & Johnson, 2019). Future Research While appeals that share the same label (civil, criminal, family) provide a general category, each case still involves nuanced legal issues, procedural histories, and workload demands. Future research could explore whether collecting more details and issue-level information helps explain some of the timing differences observed across appeals and improves the ability to predict how long a case will remain pending. Capturing more granular information may improve future analyses by providing variables that better distinguish among appeals with different characteristics (Kuhn & Johnson, 2019). The current model relied on information available in public appellate records. Important aspects of appellate workload, such as oral argument activity, briefing volume, record size, the number of parties, and procedural motions, were unavailable for analysis. Examining these factors may help explain some of the remaining variation in disposition timing in the present study. A key direction for future research is to capture issue-level information from appellate cases. Appeals grouped within the same broad case category frequently involve very different legal questions and may require substantially different levels of judicial review. Issue-specific data could help explain why some appeals move through the system more quickly than others and may improve the accuracy of future models. The remaining unexplained variation also points to factors that were not available in the current dataset. Oral argument activity, briefing demands, record size, number of parties, and procedural motions may all influence appellate timing. Examining these factors could provide additional insight into the differences seen across appeals and help explain the remaining variation outside the model. Capturing more detailed, issue-level case information during screening and routing may help explain differences in disposition timing that remain unaccounted for in the current model and could support future workload forecasting efforts. References American Bar Association. (2021, November 28). How courts work: Appeals. Bureau of Justice Statistics. (2006). State court caseload statistics, 2004 (NCJ 212979). U.S. Department of Justice, Office of Justice Programs. https://bjs.ojp.gov/content/pub/pdf/casc.pdf Clark County Bar Association. (2025, February 17). The Nevada Court of Appeals completes its first decade. https://clarkcountybar.org/the-nevada-court-of-appeals-completes-its-first-decade/ James, G., Witten, D., Hastie, T., & Tibshirani, R. (2021). An introduction to statistical learning (2nd ed.). Springer. Kuhn, M., & Johnson, K. (2019). Feature engineering and selection: A practical approach for predictive models. CRC Press. Kutner, M. H., Nachtsheim, C. J., Neter, J., & Li, W. (2005). Applied linear statistical models (5th ed.). McGraw-Hill Irwin. Montgomery, D. C., Peck, E. A., & Vining, G. G. (2021). Introduction to linear regression analysis (6th ed.). Wiley. Nevada Judiciary. (n.d.-a). How cases make it through Nevada's appellate courts. Nevada Judiciary. Nevada Judiciary. (2026). Outreach and Engagement Plan. Strategic Action Campaign 2026-2028. Nevada Judiciary. (n.d.-b). Public case search: Nevada appellate case management system. Nevada Rules of Appellate Procedure. (n.d.). Nevada Legislature. Selenium Project. (n.d.). Selenium. https://www.selenium.dev/ Steelman, D. C., Goerdt, J. A., & McMillan, J. E. (2004). Caseflow management: The heart of court management in the new millennium. National Center for State Courts.

Large Thumbnail
Ronchi: The Pace of Appellate Justice, Perspectives, 11 minutes, 45 seconds
3 0   62 views, 2 comments

Analyst Joanna Ronchi covers predictive analytics for timing in our appellate courts, including factors associated with disposition timing. You can read her report here: https://ournevadajudges.com/media/coverage/117-factors-associated-with-disposition-timing-in-appellate-court You can join as a member by clicking this link here: https://www.youtube.com/channel/UCJPb0hCUcufpuk7QhxVxwKA/join For inquiries, feel free to contact us through www.ournevadajudges.com


 Advertisement  Advertisement 
Nginx
HTML 5
FacebookTwitter

©2026 Our Nevada Judges, Inc.

Terms & ConditionsVersion: 5.2.8Privacy Policy

An NRS Chapter 82  non-profit corporation. Recognized by the IRS as a Section 501(c)(3) organization.

YouTube
Comodo SSL
Angular