Why is this code not connecting my average values with a line despite me using the plt.plot and linestyle?

I cannot get this code to connect the average points with a line. Would appreciate any help as i currently cannot figure out what to do in this situation.

here is the code:

def parse_icobi(icobilist: str) -> tuple[tuple[float, ...], tuple[float, ...]]:
    """
    Parse ICOBI data from ICOBILIST.lobster.

    Args:
        icobilist (str): Path to ICOBILIST.lobster.

    Returns:
        tuple[tuple[float, ...], tuple[float, ...]]: The Fe-S and Si-S ICOBI values.
    """

    co_s, si_s = [], []

    with open(icobilist, 'r') as stream:
        lines = stream.readlines()
        stream.close()

    markers = []
    for idx, line in enumerate(lines):
        if 'COBI#' in line:
            markers.append(idx)

    start, end = markers
    for idx, line in enumerate(lines[start + 1:end]):
        up = line.split()
        symbol_i, symbol_j = up[1], up[2]
        if 'Li' in symbol_j:
            continue

        down = lines[idx + 1 + end].split()

        if 'Co' in symbol_i and 'S' in symbol_j:
            co_s.append(float(up[-1]) + float(down[-1]))

        elif 'S' in symbol_i and 'Si' in symbol_j:
            si_s.append(float(up[-1]) + float(down[-1]))

    return tuple(co_s), tuple(si_s)
def calculate_average(data):
    averages = []
    for num in num_lithium:
        subset = [val for idx, val in enumerate(data) if x[idx] == num]
        if subset:
            avg = np.mean(subset)
        else:
            avg = np.nan  
        averages.append(avg)
    return averages


parse_icobi('co_dos_py/Li0/ICOBILIST.lobster')
parse_icobi('co_dos_py/Li1-134/ICOBILIST.lobster')
parse_icobi('co_dos_py/Li2-130/ICOBILIST.lobster')
parse_icobi('co_dos_py/Li3-95/ICOBILIST.lobster')
parse_icobi('co_dos_py/Li7-2/ICOBILIST.lobster')
parse_icobi('co_dos_py/Li8-0/ICOBILIST.lobster')


paths = ['co_dos_py/Li0/ICOBILIST.lobster' ,'co_dos_py/Li1-134/ICOBILIST.lobster','co_dos_py/Li2-130/ICOBILIST.lobster','co_dos_py/Li3-95/ICOBILIST.lobster','co_dos_py/Li7-2/ICOBILIST.lobster','co_dos_py/Li8-0/ICOBILIST.lobster']
num_lithium = [0,1,2,3,7,8]

for iteration_count, path in enumerate(paths):
    co_s, si_s = parse_icobi(path)
    x = [num_lithium[iteration_count] for idx in range(len(co_s))]
    z = [num_lithium[iteration_count] for idx in range(len(si_s))]
    print (co_s, len(co_s))
    print (si_s, len(si_s))
    print ()

    plt.scatter(x, co_s,s = 5, color='green',label= 'co_s')
    plt.scatter(z, si_s, s = 5, color='purple',label='si_s')
    avg_co = calculate_average(co_s)
    avg_si = calculate_average(si_s)
    
    plt.plot(num_lithium, avg_co, linestyle='--', color='green', marker='o', label='Average co_s')
    plt.plot(num_lithium, avg_si, linestyle='--', color='purple', marker='o', label='Average si_s')



plt.ylabel("Bond covalency")
plt.gca().invert_xaxis()
plt.savefig('covalency_co.png', dpi=300)
plt.show()


why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁
why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all 🙁

why isnt it letting me post this code i dont’get this website at all :

New contributor

user25020285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật