2024.01.24作业

1.单链表按任意元素查找

Linklist search_element(Linklist head, datatype element)
{
    if (NULL == head)
    {
        puts("按元素查找:链表为空");
        return head;
    }

    int i = 1;
    Linklist q = head;
    for (i = 1; q != NULL; i++)
    {
        if (q->data == element)
        {
            break;
        }

        q = q->next;
    }

    if (NULL == q)
    {
        printf("按元素查找:%d 不存在\n", element);
        return head;
    }

    printf("按元素查找:%d 在 %d 位\n", element, i);

    return head;
}

2.单链表按任意元素修改

Linklist change_element(Linklist head, datatype old_element, datatype element)
{
    if (NULL == head)
    {
        puts("按元素修改:链表为空");
        return head;
    }

    int i = 1;
    Linklist q = head;
    for (i = 1; q != NULL; i++)
    {
        if (q->data == old_element)
        {
            break;
        }

        q = q->next;
    }

    if (NULL == q)
    {
        printf("按元素修改:%d 不存在\n", element);
        return head;
    }

    q->data = element;
    printf("按元素修改:%d 位的 %d 修改为 %d\n", i, old_element, element);

    return head;
}

3.单链表按任意元素删除

Linklist delete_element(Linklist head, datatype element)
{
    if (NULL == head)
    {
        puts("按元素删除:链表为空");
        return head;
    }

    int i = 1;
    Linklist q = head;
    for (i = 1; q != NULL; i++)
    {
        if (q->data == element)
        {
            break;
        }

        q = q->next;
    }

    if (NULL == q)
    {
        printf("按元素删除:%d 不存在\n", element);
        return head;
    }

    if (head->data == element)
    {
        q = head;
        head = head->next;
        free(q);
        q = NULL;
        printf("按元素删除:删除在 %d 位的 %d\n", i, element);
        return head;
    }

    Linklist p = head;
    while (p->next != q)
    {
        p = p->next;
    }

    p->next = q->next;
    free(q);
    q = NULL;
    printf("按元素删除:删除在 %d 位的 %d\n", i, element);

    return head;
}

4.单链表排序

Linklist sort(Linklist head)
{
    if (NULL == head)
    {
        puts("排序:链表为空");
        return head;
    }

    if (NULL == head->next)
    {
        puts("排序:链表只有一个元素");
        return head;
    }

    Linklist p, q;
    p = head;
    while (p->next != NULL)
    {
        q = p->next;

        while (q != NULL)
        {
            if (p->data > q ->data)
            {
                datatype t = p->data;
                p->data = q->data;
                q->data = t;
            }

            q = q->next;
        }

        p = p->next;
    }
    puts("排序:完成");

    return head;
}

5.单链表释放内存

Linklist free_space(Linklist head)
{
    puts("清空链表");
    if (NULL == head)
    {
        return NULL;
    }

    Linklist p;
    while (head != NULL)
    {
        p = head;
        head = head->next;
        free(p);
        p = NULL;
    }

    head = NULL;

    return head;
}

源代码

myfunc.h

#ifndef __MYFUNC_H__
#define __MYFUNC_H__

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

enum num
{
    FALSE = -1,
    SUCCESS
};

typedef int datatype;
typedef struct Node
{
    datatype data;
    struct Node* next;
} *Linklist;

Linklist create();
Linklist insert_head(Linklist head, datatype element);
Linklist insert_rear(Linklist head, datatype element);
Linklist delete_head(Linklist head);
Linklist delete_rear(Linklist head);
Linklist insert_pos(Linklist head, datatype element, int pos);
Linklist delete_pos(Linklist head, int pos);

Linklist search_element(Linklist head, datatype element);
Linklist change_element(Linklist head, datatype old_element, datatype element);
Linklist delete_element(Linklist head, datatype element);
Linklist sort(Linklist head);
Linklist free_space(Linklist head);


void show(Linklist head);
int length(Linklist head);


#endif

myfunc.c

#include "myfunc.h"


Linklist create()
{
    Linklist s = (Linklist)malloc(sizeof(struct Node));
    
    if (NULL == s)
    {
        return NULL;
    }

    s->data = 0;
    s->next = NULL;

    return s;
}

Linklist insert_head(Linklist head, datatype element)
{
    Linklist s = create();
    if (NULL == s)
    {
        return NULL;
    }

    s->data = element;
    if (NULL == head)
    {
        head = s;
    }
    else
    {
        s->next = head;
        head = s;
    }
    printf("头插元素 %d\n", element);

    return head;
}

void show(Linklist head)
{
    if (NULL == head)
    {
        puts("展示:链表为空");
        return;
    }

    printf("展示:链表中元素:");
    Linklist p = head;
    while (p)
    {
        printf("%2d", p->data);
        p = p->next;
    }
    printf("\n");
}

Linklist insert_rear(Linklist head, datatype element)
{
    Linklist s = create();
    if (NULL == s)
    {
        return NULL;
    }
    s->data = element;

    if (NULL == head)
    {
        head = s;
    }
    else
    {
        Linklist p = head;
        while (p->next)
        {
            p = p->next;
        }
        p->next = s;
    }
    printf("尾插:元素 %d\n", s->data);

    return head;
}

Linklist delete_head(Linklist head)
{
    if (NULL == head)
    {
        puts("头删:链表为空");
        return NULL;
    }

    Linklist s = head;
    head = s->next;
    s->next = NULL;
    printf("头删:元素 %d\n", s->data);
    free(s);
    s = NULL;

    return head;
}

Linklist delete_rear(Linklist head)
{
    if (NULL == head)
    {
        puts("尾删:链表为空");
        return NULL;
    }

    if (NULL == head->next)
    {
        printf("尾删:元素 %d\n", head->data);
        free(head);
        head = NULL;
        return head;
    }

    Linklist p = head;
    while (p->next->next)
    {
        p = p->next;
    }

    Linklist s = p->next;
    p->next = NULL;
    printf("尾删:元素 %d\n", s->data);
    free(s);
    s = NULL;

    return head;
}

int length(Linklist head)
{
    int len = 0;
    Linklist p = head;
    while (p)
    {
        p = p->next;
        len++;
    }

    return len;
}

Linklist insert_pos(Linklist head, datatype element, int pos)
{
    if (pos < 1 || pos > length(head) + 1)
    {
        puts("插入:位置不合法");
        return head;
    }

    if (1 == pos)
    {
        printf("插入:");
        head = insert_head(head, element);
        return head;
    }

    Linklist p = head;
    for (int i = 1; i < pos - 1; i++)
    {
        p = p->next;
    }

    Linklist s = create();
    s->data = element;
    s->next = p->next;
    p->next = s;
    printf("插入:在 %d 处插入元素 %d\n", pos, s->data);

    return head;
}

Linklist delete_pos(Linklist head, int pos)
{
    if (pos < 1 || pos > length(head) + 1)
    {
        puts("删除:位置不合法");
        return head;
    }

    if (1 == pos)
    {
        printf("删除:删除 1 处元素 %d\n", head->data);
        free(head);
        head = NULL;
        return head;
    }

    Linklist p = head;
    for (int i = 1; i < pos - 1; i++)
    {
        p = p->next;
    }

    Linklist s = p->next;
    p->next = s->next;
    printf("删除:删除 %d 处元素 %d\n", pos, s->data);
    free(s);
    s = NULL;

    return head;
}

Linklist change_pos(Linklist head, datatype element, int pos)
{
    if (pos < 1 || pos > length(head) + 1)
    {
        puts("删除:位置不合法");
        return head;
    }

    if (1 == pos)
    {
        printf("删除:删除 1 处元素 %d\n", head->data);
        free(head);
        head = NULL;
        return head;
    }

    Linklist p = head;
    for (int i = 1; i < pos - 1; i++)
    {
        p = p->next;
    }

    Linklist s = p->next;
    p->next = s->next;
    printf("删除:删除 %d 处元素 %d\n", pos, s->data);
    free(s);
    s = NULL;

    return head;
}

Linklist search_element(Linklist head, datatype element)
{
    if (NULL == head)
    {
        puts("按元素查找:链表为空");
        return head;
    }

    int i = 1;
    Linklist q = head;
    for (i = 1; q != NULL; i++)
    {
        if (q->data == element)
        {
            break;
        }

        q = q->next;
    }

    if (NULL == q)
    {
        printf("按元素查找:%d 不存在\n", element);
        return head;
    }

    printf("按元素查找:%d 在 %d 位\n", element, i);

    return head;
}

Linklist change_element(Linklist head, datatype old_element, datatype element)
{
    if (NULL == head)
    {
        puts("按元素修改:链表为空");
        return head;
    }

    int i = 1;
    Linklist q = head;
    for (i = 1; q != NULL; i++)
    {
        if (q->data == old_element)
        {
            break;
        }

        q = q->next;
    }

    if (NULL == q)
    {
        printf("按元素修改:%d 不存在\n", element);
        return head;
    }

    q->data = element;
    printf("按元素修改:%d 位的 %d 修改为 %d\n", i, old_element, element);

    return head;
}

Linklist delete_element(Linklist head, datatype element)
{
    if (NULL == head)
    {
        puts("按元素删除:链表为空");
        return head;
    }

    int i = 1;
    Linklist q = head;
    for (i = 1; q != NULL; i++)
    {
        if (q->data == element)
        {
            break;
        }

        q = q->next;
    }

    if (NULL == q)
    {
        printf("按元素删除:%d 不存在\n", element);
        return head;
    }

    if (head->data == element)
    {
        q = head;
        head = head->next;
        free(q);
        q = NULL;
        printf("按元素删除:删除在 %d 位的 %d\n", i, element);
        return head;
    }

    Linklist p = head;
    while (p->next != q)
    {
        p = p->next;
    }

    p->next = q->next;
    free(q);
    q = NULL;
    printf("按元素删除:删除在 %d 位的 %d\n", i, element);

    return head;
}

Linklist sort(Linklist head)
{
    if (NULL == head)
    {
        puts("排序:链表为空");
        return head;
    }

    if (NULL == head->next)
    {
        puts("排序:链表只有一个元素");
        return head;
    }

    Linklist p, q;
    p = head;
    while (p->next != NULL)
    {
        q = p->next;

        while (q != NULL)
        {
            if (p->data > q ->data)
            {
                datatype t = p->data;
                p->data = q->data;
                q->data = t;
            }

            q = q->next;
        }

        p = p->next;
    }
    puts("排序:完成");

    return head;
}

Linklist free_space(Linklist head)
{
    puts("清空链表");
    if (NULL == head)
    {
        return NULL;
    }

    Linklist p;
    while (head != NULL)
    {
        p = head;
        head = head->next;
        free(p);
        p = NULL;
    }

    head = NULL;

    return head;
}

test.c

#include "myfunc.h"

int main()
{
    Linklist head = NULL;

    int n;
    scanf("%d", &n);

    datatype element;
    for (int i = 0; i < n; i++)
    {
        scanf("%d", &element);
        head = insert_rear(head, element);
        if (NULL == head)
        {
            printf("插入元素 %d 失败\n", element);
        }
    }
    printf("----输入完毕----\n\n");

    show(head);

    printf("输入元素:");
    scanf("%d", &element);

    head = search_element(head, element);

    int old_element;
    printf("输入元素:");
    scanf("%d", &old_element);
    printf("输入新元素:");
    scanf("%d", &element);
    head = change_element(head, old_element, element);
    show(head);

    printf("输入元素:");
    scanf("%d", &element);
    head = delete_element(head, element);
    show(head);

    head = sort(head);
    show(head);

    head = free_space(head);
    show(head);

    return 0;
}

结果

思维导图

E:\桌面\Python大作业\Ge_weather_data_project\.venv\Scripts\python.exe E:\桌面\Python大作业\Ge_weather_data_project\main.py 数据质量检查: 缺失值统计: code 0 city 0 high_temp 0 low_temp 0 humidity 0 rain 0 dtype: int64 E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 26368 (\N{CJK UNIFIED IDEOGRAPH-6700}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 39640 (\N{CJK UNIFIED IDEOGRAPH-9AD8}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 27668 (\N{CJK UNIFIED IDEOGRAPH-6C14}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 28201 (\N{CJK UNIFIED IDEOGRAPH-6E29}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 8451 (\N{DEGREE CELSIUS}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 30456 (\N{CJK UNIFIED IDEOGRAPH-76F8}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 28287 (\N{CJK UNIFIED IDEOGRAPH-6E7F}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 24615 (\N{CJK UNIFIED IDEOGRAPH-6027}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 26512 (\N{CJK UNIFIED IDEOGRAPH-6790}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 22478 (\N{CJK UNIFIED IDEOGRAPH-57CE}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 24066 (\N{CJK UNIFIED IDEOGRAPH-5E02}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 37073 (\N{CJK UNIFIED IDEOGRAPH-90D1}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 24030 (\N{CJK UNIFIED IDEOGRAPH-5DDE}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 23433 (\N{CJK UNIFIED IDEOGRAPH-5B89}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 38451 (\N{CJK UNIFIED IDEOGRAPH-9633}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 26032 (\N{CJK UNIFIED IDEOGRAPH-65B0}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 20065 (\N{CJK UNIFIED IDEOGRAPH-4E61}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 35768 (\N{CJK UNIFIED IDEOGRAPH-8BB8}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 26124 (\N{CJK UNIFIED IDEOGRAPH-660C}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 24179 (\N{CJK UNIFIED IDEOGRAPH-5E73}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 39030 (\N{CJK UNIFIED IDEOGRAPH-9876}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 23665 (\N{CJK UNIFIED IDEOGRAPH-5C71}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 20449 (\N{CJK UNIFIED IDEOGRAPH-4FE1}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 21335 (\N{CJK UNIFIED IDEOGRAPH-5357}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 24320 (\N{CJK UNIFIED IDEOGRAPH-5F00}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 23553 (\N{CJK UNIFIED IDEOGRAPH-5C01}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 27931 (\N{CJK UNIFIED IDEOGRAPH-6D1B}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 21830 (\N{CJK UNIFIED IDEOGRAPH-5546}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 19992 (\N{CJK UNIFIED IDEOGRAPH-4E18}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 28966 (\N{CJK UNIFIED IDEOGRAPH-7126}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 20316 (\N{CJK UNIFIED IDEOGRAPH-4F5C}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 40548 (\N{CJK UNIFIED IDEOGRAPH-9E64}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 22721 (\N{CJK UNIFIED IDEOGRAPH-58C1}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 28654 (\N{CJK UNIFIED IDEOGRAPH-6FEE}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 21608 (\N{CJK UNIFIED IDEOGRAPH-5468}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 21475 (\N{CJK UNIFIED IDEOGRAPH-53E3}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 28463 (\N{CJK UNIFIED IDEOGRAPH-6F2F}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 27827 (\N{CJK UNIFIED IDEOGRAPH-6CB3}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 39547 (\N{CJK UNIFIED IDEOGRAPH-9A7B}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 39532 (\N{CJK UNIFIED IDEOGRAPH-9A6C}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 24215 (\N{CJK UNIFIED IDEOGRAPH-5E97}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 19977 (\N{CJK UNIFIED IDEOGRAPH-4E09}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 38376 (\N{CJK UNIFIED IDEOGRAPH-95E8}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 23777 (\N{CJK UNIFIED IDEOGRAPH-5CE1}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 27982 (\N{CJK UNIFIED IDEOGRAPH-6D4E}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:139: UserWarning: Glyph 28304 (\N{CJK UNIFIED IDEOGRAPH-6E90}) missing from font(s) Arial. plt.tight_layout() E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 26368 (\N{CJK UNIFIED IDEOGRAPH-6700}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 39640 (\N{CJK UNIFIED IDEOGRAPH-9AD8}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 27668 (\N{CJK UNIFIED IDEOGRAPH-6C14}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 28201 (\N{CJK UNIFIED IDEOGRAPH-6E29}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 8451 (\N{DEGREE CELSIUS}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 30456 (\N{CJK UNIFIED IDEOGRAPH-76F8}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 28287 (\N{CJK UNIFIED IDEOGRAPH-6E7F}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 24615 (\N{CJK UNIFIED IDEOGRAPH-6027}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 26512 (\N{CJK UNIFIED IDEOGRAPH-6790}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 22478 (\N{CJK UNIFIED IDEOGRAPH-57CE}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 24066 (\N{CJK UNIFIED IDEOGRAPH-5E02}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 37073 (\N{CJK UNIFIED IDEOGRAPH-90D1}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 24030 (\N{CJK UNIFIED IDEOGRAPH-5DDE}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 23433 (\N{CJK UNIFIED IDEOGRAPH-5B89}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 38451 (\N{CJK UNIFIED IDEOGRAPH-9633}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 26032 (\N{CJK UNIFIED IDEOGRAPH-65B0}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 20065 (\N{CJK UNIFIED IDEOGRAPH-4E61}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 35768 (\N{CJK UNIFIED IDEOGRAPH-8BB8}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 26124 (\N{CJK UNIFIED IDEOGRAPH-660C}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 24179 (\N{CJK UNIFIED IDEOGRAPH-5E73}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 39030 (\N{CJK UNIFIED IDEOGRAPH-9876}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 23665 (\N{CJK UNIFIED IDEOGRAPH-5C71}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 20449 (\N{CJK UNIFIED IDEOGRAPH-4FE1}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 21335 (\N{CJK UNIFIED IDEOGRAPH-5357}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 24320 (\N{CJK UNIFIED IDEOGRAPH-5F00}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 23553 (\N{CJK UNIFIED IDEOGRAPH-5C01}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 27931 (\N{CJK UNIFIED IDEOGRAPH-6D1B}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 21830 (\N{CJK UNIFIED IDEOGRAPH-5546}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 19992 (\N{CJK UNIFIED IDEOGRAPH-4E18}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 28966 (\N{CJK UNIFIED IDEOGRAPH-7126}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 20316 (\N{CJK UNIFIED IDEOGRAPH-4F5C}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 40548 (\N{CJK UNIFIED IDEOGRAPH-9E64}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 22721 (\N{CJK UNIFIED IDEOGRAPH-58C1}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 28654 (\N{CJK UNIFIED IDEOGRAPH-6FEE}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 21608 (\N{CJK UNIFIED IDEOGRAPH-5468}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 21475 (\N{CJK UNIFIED IDEOGRAPH-53E3}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 28463 (\N{CJK UNIFIED IDEOGRAPH-6F2F}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 27827 (\N{CJK UNIFIED IDEOGRAPH-6CB3}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 39547 (\N{CJK UNIFIED IDEOGRAPH-9A7B}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 39532 (\N{CJK UNIFIED IDEOGRAPH-9A6C}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 24215 (\N{CJK UNIFIED IDEOGRAPH-5E97}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 19977 (\N{CJK UNIFIED IDEOGRAPH-4E09}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 38376 (\N{CJK UNIFIED IDEOGRAPH-95E8}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 23777 (\N{CJK UNIFIED IDEOGRAPH-5CE1}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 27982 (\N{CJK UNIFIED IDEOGRAPH-6D4E}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') E:\桌面\Python大作业\Ge_weather_data_project\main.py:140: UserWarning: Glyph 28304 (\N{CJK UNIFIED IDEOGRAPH-6E90}) missing from font(s) Arial. plt.savefig('scatter_analysis.png', dpi=300, bbox_inches='tight') D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 26368 (\N{CJK UNIFIED IDEOGRAPH-6700}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 39640 (\N{CJK UNIFIED IDEOGRAPH-9AD8}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 27668 (\N{CJK UNIFIED IDEOGRAPH-6C14}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 28201 (\N{CJK UNIFIED IDEOGRAPH-6E29}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 8451 (\N{DEGREE CELSIUS}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 30456 (\N{CJK UNIFIED IDEOGRAPH-76F8}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 23545 (\N{CJK UNIFIED IDEOGRAPH-5BF9}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 28287 (\N{CJK UNIFIED IDEOGRAPH-6E7F}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 24230 (\N{CJK UNIFIED IDEOGRAPH-5EA6}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 19982 (\N{CJK UNIFIED IDEOGRAPH-4E0E}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 24615 (\N{CJK UNIFIED IDEOGRAPH-6027}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 26512 (\N{CJK UNIFIED IDEOGRAPH-6790}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 31995 (\N{CJK UNIFIED IDEOGRAPH-7CFB}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 22478 (\N{CJK UNIFIED IDEOGRAPH-57CE}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 24066 (\N{CJK UNIFIED IDEOGRAPH-5E02}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 37073 (\N{CJK UNIFIED IDEOGRAPH-90D1}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 24030 (\N{CJK UNIFIED IDEOGRAPH-5DDE}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 23433 (\N{CJK UNIFIED IDEOGRAPH-5B89}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 38451 (\N{CJK UNIFIED IDEOGRAPH-9633}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 26032 (\N{CJK UNIFIED IDEOGRAPH-65B0}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 20065 (\N{CJK UNIFIED IDEOGRAPH-4E61}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 35768 (\N{CJK UNIFIED IDEOGRAPH-8BB8}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 26124 (\N{CJK UNIFIED IDEOGRAPH-660C}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 24179 (\N{CJK UNIFIED IDEOGRAPH-5E73}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 39030 (\N{CJK UNIFIED IDEOGRAPH-9876}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 23665 (\N{CJK UNIFIED IDEOGRAPH-5C71}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 20449 (\N{CJK UNIFIED IDEOGRAPH-4FE1}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 21335 (\N{CJK UNIFIED IDEOGRAPH-5357}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 24320 (\N{CJK UNIFIED IDEOGRAPH-5F00}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 23553 (\N{CJK UNIFIED IDEOGRAPH-5C01}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 27931 (\N{CJK UNIFIED IDEOGRAPH-6D1B}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 21830 (\N{CJK UNIFIED IDEOGRAPH-5546}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 19992 (\N{CJK UNIFIED IDEOGRAPH-4E18}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 28966 (\N{CJK UNIFIED IDEOGRAPH-7126}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 20316 (\N{CJK UNIFIED IDEOGRAPH-4F5C}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 40548 (\N{CJK UNIFIED IDEOGRAPH-9E64}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 22721 (\N{CJK UNIFIED IDEOGRAPH-58C1}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 28654 (\N{CJK UNIFIED IDEOGRAPH-6FEE}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 21608 (\N{CJK UNIFIED IDEOGRAPH-5468}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 21475 (\N{CJK UNIFIED IDEOGRAPH-53E3}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 28463 (\N{CJK UNIFIED IDEOGRAPH-6F2F}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 27827 (\N{CJK UNIFIED IDEOGRAPH-6CB3}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 39547 (\N{CJK UNIFIED IDEOGRAPH-9A7B}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 39532 (\N{CJK UNIFIED IDEOGRAPH-9A6C}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 24215 (\N{CJK UNIFIED IDEOGRAPH-5E97}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 19977 (\N{CJK UNIFIED IDEOGRAPH-4E09}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 38376 (\N{CJK UNIFIED IDEOGRAPH-95E8}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 23777 (\N{CJK UNIFIED IDEOGRAPH-5CE1}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 27982 (\N{CJK UNIFIED IDEOGRAPH-6D4E}) missing from font(s) Arial. FigureCanvasAgg.draw(self) D:\python\PyCharm 2024.3\plugins\python-ce\helpers\pycharm_matplotlib_backend\backend_interagg.py:124: UserWarning: Glyph 28304 (\N{CJK UNIFIED IDEOGRAPH-6E90}) missing from font(s) Arial. FigureCanvasAgg.draw(self) 可视化图表已保存为:rainfall_summary.png, temp_humidity.png, scatter_analysis.png 进程已结束,退出代码为 0
05-13
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值