热到在Sublime Text选项卡集控件中设置行高

时间:2017-01-30 01:12:01

标签: sublimetext3

我想更改较大的字体大小,但我无法更改行高,因此像g p q这样的字母是“裁剪不足”

我还没有找到解决方案,似乎没有人更改“标签设置控件”上的标签行高度?

我试过

XAll = pd_data[['title','wordcount','sumscores','length']]
y = pd_data['sentiment']
X_train, X_test, y_train, y_test = train_test_split(XAll, y, random_state=1)

vect = CountVectorizer(max_df=0.5)
vect.fit(X_train['title'])
X_train_dtm = vect.transform(X_train['title'])
column_index = X_train_dtm.indices

print(type(X_train_dtm))    # This is <class 'scipy.sparse.csr.csr_matrix'>
print("X_train_dtm shape",X_train_dtm.get_shape())  # This is (856, 2016)
print("column index:",column_index)     # This is column index: [ 533  754  859 ...,  633  950 1339]

没有成功

谢谢

enter image description here

1 个答案:

答案 0 :(得分:1)

这是一个已知的错误,目前没有解决方法(如构建3126):https://github.com/SublimeTextIssues/Core/issues/694

编辑:这已在构建3127中修复。