One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
local alert = require("hs.alert") | |
local timer = require("hs.timer") | |
local eventtap = require("hs.eventtap") | |
local events = eventtap.event.types | |
local module = {} | |
-- ** Changed original gist from "ctrl" to "cmd" ** | |
-- Save this in your Hammerspoon configuration directiorn (~/.hammerspoon/) |
friedman.test.with.post.hoc <- function(data, alpha = 0.05) | |
{ | |
print("Check if you missing the packages 'graph' and 'Rgraphviz'. Try to install them using bioconductor") | |
#source("http://bioconductor.org/biocLite.R") | |
#biocLite(c("graph","Rgraphviz")) | |
# Loading needed packages | |
if(!require(ggplot2)) | |
{ |
#!/usr/bin/env python | |
import sys | |
if sys.version_info[0] >= 3: | |
import PySimpleGUI as sg | |
else: | |
import PySimpleGUI27 as sg | |
import cv2 as cv | |
from PIL import Image | |
import io | |
from sys import exit as exit |