本系列 IDEA版本为: IntelliJ IDEA 2021.1.1 x64
目录
一、Appearance & Behavior(外观与行为)
1. Appearance
2. Menus and Toolbars(菜单和工具栏)
3. System Settings(系统设置)
1. Passwords(密码管理)
主要是IntelliJ IDEA来为版本控制存储库,数据库和其他受保护的资源保存您的密码
-
In KeePass: 用来指定KeePass密码数据库文件c.kdbx的位置
Protect master password using PGP Key:使用pgp来加密数据库的密码 -
Do not save,forget passwords after restart: 不保存任何密码,重启后需要重新配置
2. HTTP Proxy
3. Data Sharing(数据共享)
选中这个发送使用情况统计信息复选框后,将会允许JetBrains收集你使用IntelliJ IDEA时最常使用的功能和操作的统计信息。
4. Data Formats
5. Updates
6. Android SDK
4.File Colors
5. Scopes
6. Notifications
7. Quick Lists
8. Path Variables
二、使用步骤
1.引入库
代码如下(示例):
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import warnings
warnings.filterwarnings('ignore')
import ssl
ssl._create_default_https_context = ssl._create_unverified_context
2.读入数据
代码如下(示例):
data = pd.read_csv(
'https://labfile.oss.aliyuncs.com/courses/1283/adult.data.csv')
print(data.head())
该处使用的url网络请求的数据。