sis

SIS r Error in glm.fit(cbind(ones, x[, index], x[, condind]), y, family = gaussian()) : NA/NaN/Inf in 'x'

时光毁灭记忆、已成空白 提交于 2021-01-29 07:21:12
问题 I am using SIS R. My data is numerical including the response variable. It has 651 Columns. I standardized it and convert it to matrix form. library("SIS") model1 <- SIS(GTGTm, gGTym, family = "gaussian", penalty = "lasso", tune = "bic", nfolds = 10,perm = FALSE,varISIS= "cons", nsis = 10, standardize = TRUE) I don't have any NA in the data. But I am getting the following error message. Please help! But,it is creating the space with as.matrix so I don't know how to fix it. GT = read.csv(

How can I integrate Seaborn plot into Tkinter GUI

孤街醉人 提交于 2019-12-11 16:39:38
问题 I am trying to plot using Seaborn in Tkinter. My approaches so far were different variations of this and I could not get it to work. I tried the matplotlib.use("Agg"), which works fine one the normal Matplotlib graphs on the page but doesn't seem to work on the Seaborn plots matplotlib.use("TkAgg") # 'Agg' doesnt work either from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg import seaborn as sns import tkinter as tk def graphspage(): pf = tk.Tk() pf.geometry("1000x800") ###

Codeforces Round #503 (by SIS, Div. 2)

冷暖自知 提交于 2019-12-05 07:51:28
A - New Building for SIS 题意:英语阅读,ab之间都有通道。 #include<bits/stdc++.h> using namespace std; typedef long long ll; void test_case() { int n, h, a, b, q; scanf("%d%d%d%d%d", &n, &h, &a, &b, &q); while(q--) { int t1, h1, t2, h2; scanf("%d%d%d%d", &t1, &h1, &t2, &h2); if(t1 == t2) printf("%d\n", abs(h1 - h2)); else if(a <= h1 && h1 <= b || a <= h2 && h2 <= b) printf("%d\n", abs(h1 - h2) + abs(t1 - t2)); else printf("%d\n", min(abs(h1 - a) + abs(h2 - a), abs(h1 - b) + abs(h2 - b)) + abs(t1 - t2)); } } int main() { #ifdef KisekiPurin freopen("KisekiPurin.in", "r", stdin); #endif // KisekiPurin int t = 1

source insight 常用快捷键

做~自己de王妃 提交于 2019-12-01 15:04:31
source insight 常用快捷键(右键里大多功能有快捷键提示) 退出程序 :Alt+F4 重画屏幕 :Ctrl+Alt+Space 完成语法 :Ctrl+E 复制一行 :Ctrl+K 恰好复制该位置右边的该行的字符 :Ctrl+Shift+K 复制到剪贴板 : Ctrl+Del 剪切一行 :Ctrl+U 剪切该位置右边的该行的字符 :Ctrl+; 剪切到剪贴板 : Ctrl+Shift+X 剪切一个字 :Ctrl+, 左边缩进 :F9 右边缩进 :F10 插入一行 : Ctrl+I 插入新行 :Ctrl+Enter 加入一行 :Ctrl+J 从剪切板粘贴 : Ctrl+Ins 粘贴一行 :Ctrl+P 重复上一个动作 : Ctrl+Y 重新编号 :Ctrl+R 重复输入 :Ctrl+ 替换 :Ctrl+H 智能重命名 :Ctrl+'' 关闭文件 :Ctrl+W 关闭所有文件 :Ctrl+Shift+W 新建 :Ctrl+N 转到下一个文件 :Ctrl+Shift+N 打开 :Ctrl+O 重新装载文件 :Ctrl+Shift+O 另存为 :Ctrl+Shift+S 显示文件状态 :Shift+F10 激活语法窗口 :Alt+L 回到该行的开始 :Home 回到选择的开始 :Ctrl+Alt+[ 到块的下面 :Ctrl+Shift+] 到块的上面 :Ctrl+Shift+[

sourceinsight使用技巧

≡放荡痞女 提交于 2019-12-01 14:52:41
1 sourceinsight screen font 的默认字体是Verdana的,它是一直变宽字体。在Document style中可以将字体改为定宽的 Courier 2 勾掉indent Open Brace和Indent Close Brace的效果: 继上一段,在相对缩进行里, 如果输入"{"或"}", 则自动和上一行列对齐 3 今天把一个用sourceinsight排版整齐的C文件,偶然用VC打开一看,全乱了。研究了半天,发现SI对每个字符的宽度不太一致。 发现选上" view --> draft view ", 就可以让每个字符的宽度一致了。快捷键是 " Alt + F12 " 4选中几行代码按tab键或者shift+tab可以左右移动代码,调整代码时很有用。 配置成简单好用的 c/java 代码编辑器 1 、缩进与 tab ( 1 ) Options 菜单 à Preferences à Typing 卡,勾掉下面两项∶ Typing tab indents line , regardless of selection ,空行按 tab 无法前进 Typing tab replaces current selection ,选定部分内容、再按 tab 时会清除所选 ( 2 ) Options 菜单 à Document Options (针对不同文件类型

source insight快捷键(转)

て烟熏妆下的殇ゞ 提交于 2019-11-26 00:18:00
source insight 常用快捷键(右键里大多功能有快捷键提示) 退出程序 : Alt+F4 重画屏幕 : Ctrl+Alt+Space 完成语法 : Ctrl+E 复制一行 : Ctrl+K 恰好复制该位置右边的该行的字符 : Ctrl+Shift+K 复制到剪贴板 : Ctrl+Del 剪切一行 : Ctrl+U 剪切该位置右边的该行的字符 : Ctrl+; 剪切到剪贴板 : Ctrl+Shift+X 剪切一个字 : Ctrl+, 左边缩进 : F9 右边缩进 : F10 插入一行 : Ctrl+I 插入新行 : Ctrl+Enter 加入一行 : Ctrl+J 从剪切板粘贴 : Ctrl+Ins 粘贴一行 : Ctrl+P 重复上一个动作 : Ctrl+Y 重新编号 : Ctrl+R 重复输入 : Ctrl+\ 替换 : Ctrl+H 智能重命名 : Ctrl+'' 关闭文件 : Ctrl+W 关闭所有文件 : Ctrl+Shift+W 新建 :Ctrl+N 转到下一个文件 : Ctrl+Shift+N 打开 : Ctrl+O 重新装载文件 : Ctrl+Shift+O 另存为 : Ctrl+Shift+S 显示文件状态 : Shift+F10 激活语法窗口 : Alt+L 回到该行的开始 : Home 回到选择的开始 : Ctrl+Alt+[ 到块的下面 : Ctrl