Jetrains DataSpell 专业数据科学 开发工具 抢先体验

Jetrains DataSpell 专业数据科学 开发工具 抢先体验_第1张图片


1.DataSpell简介

DataSpell是Jetrains公司开发的专为数据专家使用的开发工具,目前处于预发布阶段。


2.DataSpell下载安装

下载地址:https://www.jetbrains.com/dataspell/

Jetrains DataSpell 专业数据科学 开发工具 抢先体验_第2张图片
安装一路同意,默认即可。


3.使用体验

代码:

import matplotlib.pyplot as plt
import numpy as np


labels = ['G1', 'G2', 'G3', 'G4', 'G5']
men_means = [20, 34, 30, 35, 27]
women_means = [25, 32, 34, 20, 25]

x = np.arange(len(labels))  # the label locations
width = 0.35  # the width of the bars

fig, ax = plt.subplots()
rects1 = ax.bar(x - width/2, men_means, width, label='Men')
rects2 = ax.bar(x + width/2, women_means, width, label='Women')

# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.set_xticks(x)
ax.set_xticklabels(labels)
ax.legend()


fig.tight_layout()

plt.show()

Jetrains DataSpell 专业数据科学 开发工具 抢先体验_第3张图片

Jetrains DataSpell 专业数据科学 开发工具 抢先体验_第4张图片

4.总结

该工具总的来说,像是Jupyter notebooks的软件版,用起来很方便,推荐数据挖掘,数据分析同学使用。

你可能感兴趣的:(Python,python)