Why does "<<<<<<< HEAD" appear in my R script?
I think this refers to a Git Head, but I don't understand why it inserts itself in my code. When it inserts itself it breaks the code
Is there a way to prevent this?
AllAlliancePerformance <- Tab_PercentCompliant %>%
filter(ClaimsAdjudicatedThrough == VBP_Report_Date) %>%
group_by(SubMeasureID) %>%
summarise(Sum_AdaptedCompliant = sum(AdaptedCompliant, na.rm = FALSE),
Sum_TotalEligible = sum(TotalEligible, na.rm = FALSE)) %>%
mutate(Percent_Compliant = Sum_AdaptedCompliant/Sum_TotalEligible) %>%
<<<<<<< HEAD
mutate(NCQA_Mean = NCQA_MeanList) %>%
mutate(PerformanceLevel = (Percent_Compliant - NCQA_Mean))
=======
#mutate(NCQA_Mean = Tab_PercentCompliant$AdaptedNCQAMean) %>%
mutate(PerformanceLevel = (Percent_Compliant - AdaptedNCQAMean))
>>>>>>> 90d29b1de468129cce7530d84a5f7771c33a74c6