I hereby claim:
- I am wryvotary on github.
- I am wryvotary (https://keybase.io/wryvotary) on keybase.
- I have a public key ASClh5-CZKHRKUzCoXICn7O42RZOQsBMi0u69P9IsaD9Tgo
To claim this, I am signing this object:
% ---------Introduction ---------------- | |
% This snept is used to organize some small examples for LaTeX package listings. | |
% Iistings is a greate package for formating code in PDF files. | |
% https://ctan.org/pkg/listings?lang=en | |
% ------------------------------------- | |
\usepackage{listings} | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
% Code Style | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
\lstset{ |
p <- ggplot() | |
p <- ggplot(data = k_suggest_df, | |
aes(x = k, y = median_kl, col = calc)) | |
p <- p + geom_line() | |
p <- p + xlab("K") | |
p <- p + ylab("Median KL divergence (across all cells)") | |
p <- p + theme_bw(base_size = 8) | |
#p <- p + theme(legend.key.size = unit(3, "line")) | |
p <- p + theme(legend.position = "bottom") | |
p <- p + theme(legend.title = element_blank()) |
I hereby claim:
To claim this, I am signing this object:
TARGETS = Test | |
all: $(TARGETS) | |
%.o: %.cpp | |
g++-7.1.0 $^ -c -o $@ | |
Test: 461.o | |
g++-7.1.0 $^ -o $@ |
include <stdlib.h> | |
include <stdio.h> | |
include <string> | |
include <string.h> | |
include <iostream> | |
include <algorithm> | |
include <vector> | |
include <unordered_map> | |
using namespace std; |