Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
2021_dginn_covid19
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CIRI
PS_SARS-CoV-2
2021_dginn_covid19
Commits
4156bc21
Commit
4156bc21
authored
4 years ago
by
your name
Browse files
Options
Downloads
Patches
Plain Diff
script for bats
parent
17105310
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
covid_comp_bats.Rnw
+113
-0
113 additions, 0 deletions
covid_comp_bats.Rnw
covid_comp_bats.pdf
+0
-0
0 additions, 0 deletions
covid_comp_bats.pdf
covid_comp_bats.tex
+207
-0
207 additions, 0 deletions
covid_comp_bats.tex
with
320 additions
and
0 deletions
covid_comp_bats.Rnw
0 → 100644
+
113
−
0
View file @
4156bc21
\documentclass
[11pt, oneside]
{
article
}
% use "amsart" instead of "article" for AMSLaTeX format
%\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
%\geometry{letterpaper} % ... or a4paper or a5paper or ...
%\geometry{landscape} % Activate for for rotated page geometry
%\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent
%\usepackage{graphicx} % Use pdf, png, jpg, or eps with pdflatex; use eps in DVI mode
% TeX will automatically convert eps --> pdf in pdflatex
%\usepackage{amssymb}
\usepackage
[utf8]
{
inputenc
}
%\usepackage[cyr]{aeguill}
%\usepackage[francais]{babel}
%\usepackage{hyperref}
\title
{
Positive selection on genes interacting with SARS-Cov2, comparison of different analysis
}
\author
{
Marie Cariou
}
\date
{
janvier 2021
}
% Activate to display a given date or no date
\begin{document}
\maketitle
\tableofcontents
\newpage
\section
{
Data
}
Analysis were formatted by the script covid
\_
comp
\_
script0
\_
table.Rnw.
<<>>=
workdir<-"/home/adminmarie/Documents/CIRI
_
BIBS
_
projects/2020
_
05
_
Etienne
_
covid/"
tab<-read.delim(paste0(workdir,
"covid
_
comp/covid
_
comp
_
complete.txt"), h=T, sep="
\t
")
dim(tab)
@
\section
{
Comparison Bats
}
\subsection
{
Cooper-bats results VS DGINN-bats results
}
<<omegaM7M8bats>>=
plot(tab
$
cooper.batsAverage
_
dNdS, as.numeric
(
as.character
(
tab
$
bats
_
omegaM0codeml)),
xlab="Omega Cooper-bats", ylab="Omega DGINN-bats")
abline(0,1)
@
\subsection
{
Cooper-bats VS Hawkins-bats and DGINN-bats VS Hawkins-bats
}
\textit
{
I don't think we have the omega values
}
\section
{
Overlap
}
\subsection
{
Data
}
<<subbats>>=
tmp<-na.omit(tab[,c("Gene.name", "bats
_
codemlM7M8.p.value", "hawkins
_
Positive.Selection..M8vM8a.p.value", "cooper.batsM7.M8
_
p
_
value", "bats
_
BUSTED", "bats
_
BppM1M2", "bats
_
BppM7M8", "bats
_
codemlM1M2", "bats
_
codemlM7M8")])
tmp
$
bats
_
codemlM
7
M
8
.p.value<
-
as.numeric
(
as.character
(
tmp
$
bats
_
codemlM7M8.p.value))
dim(tmp)
@
174 genes (present in the 3 experiments)
\subsection
{
Mondrian
}
<<mondrianbats>>=
library(Mondrian)
monddata<-as.data.frame(tmp
$
Gene.name
)
monddata
$
bats
_
hawkins<-ifelse(tmp
$
hawkins
_
Positive.Selection..M
8
vM
8
a.p.value<
0
.
05
,
1
,
0
)
monddata
$
bats
_
cooper<-ifelse(tmp
$
cooper.batsM
7
.M
8
_
p
_
value<
0
.
05
,
1
,
0
)
dginntmp<
-
rowSums
(
cbind
(
tmp
$
bats
_
codemlM1M2=="Y", tmp
$
bats
_
codemlM
7
M
8
==
"Y",
tmp
$
bats
_
BppM1M2=="Y", tmp
$
bats
_
BppM
7
M
8
==
"Y", tmp
$
bats
_
BUSTED=="Y"))
monddata
$
bats
_
dginn<
-
ifelse
(
dginntmp>
=
3
,
1
,
0
)
mondrian
(
monddata
[
,
2
:
4
]
, labels
=
c
(
"DGINN >
=
3
", "hawkins", "Cooper"
))
monddata
$
bats
_
dginn<-ifelse(dginntmp>=4, 1,0)
mondrian(monddata[,2:4], labels=c("DGINN >=4", "hawkins", "Cooper"))
@
\subsection
{
subsetR
}
<<subsetbats>>=
library(UpSetR)
upsetdata<-as.data.frame(tmp
$
Gene.name
)
upsetdata
$
bats
_
hawkins<-ifelse(tmp
$
hawkins
_
Positive.Selection..M
8
vM
8
a.p.value<
0
.
05
,
1
,
0
)
upsetdata
$
bats
_
cooper<-ifelse(tmp
$
cooper.batsM
7
.M
8
_
p
_
value<
0
.
05
,
1
,
0
)
upsetdata
$
bats
_
dginn<-ifelse(dginntmp>=3, 1,0)
upset(upsetdata, nsets = 3, matrix.color = "#DC267F",
main.bar.color = "#648FFF", sets.bar.color = "#FE6100")
upsetdata
$
bats
_
dginn<
-
ifelse
(
dginntmp>
=
4
,
1
,
0
)
upset
(
upsetdata, nsets
=
3
, matrix.color
=
"#DC
267
F",
main.bar.color
=
"#
648
FFF", sets.bar.color
=
"#FE
6100
"
)
@
\end
{
document
}
This diff is collapsed.
Click to expand it.
covid_comp_bats.pdf
0 → 100644
+
0
−
0
View file @
4156bc21
File added
This diff is collapsed.
Click to expand it.
covid_comp_bats.tex
0 → 100644
+
207
−
0
View file @
4156bc21
\documentclass
[11pt, oneside]
{
article
}
\usepackage
[]
{
graphicx
}
\usepackage
[]
{
color
}
% maxwidth is the original width if it is less than linewidth
% otherwise use linewidth (to make sure the graphics do not exceed the margin)
\makeatletter
\def\maxwidth
{
%
\ifdim\Gin
@nat@width>
\linewidth
\linewidth
\else
\Gin
@nat@width
\fi
}
\makeatother
\definecolor
{
fgcolor
}{
rgb
}{
0.345, 0.345, 0.345
}
\newcommand
{
\hlnum
}
[1]
{
\textcolor
[rgb]
{
0.686,0.059,0.569
}{
#1
}}
%
\newcommand
{
\hlstr
}
[1]
{
\textcolor
[rgb]
{
0.192,0.494,0.8
}{
#1
}}
%
\newcommand
{
\hlcom
}
[1]
{
\textcolor
[rgb]
{
0.678,0.584,0.686
}{
\textit
{
#1
}}}
%
\newcommand
{
\hlopt
}
[1]
{
\textcolor
[rgb]
{
0,0,0
}{
#1
}}
%
\newcommand
{
\hlstd
}
[1]
{
\textcolor
[rgb]
{
0.345,0.345,0.345
}{
#1
}}
%
\newcommand
{
\hlkwa
}
[1]
{
\textcolor
[rgb]
{
0.161,0.373,0.58
}{
\textbf
{
#1
}}}
%
\newcommand
{
\hlkwb
}
[1]
{
\textcolor
[rgb]
{
0.69,0.353,0.396
}{
#1
}}
%
\newcommand
{
\hlkwc
}
[1]
{
\textcolor
[rgb]
{
0.333,0.667,0.333
}{
#1
}}
%
\newcommand
{
\hlkwd
}
[1]
{
\textcolor
[rgb]
{
0.737,0.353,0.396
}{
\textbf
{
#1
}}}
%
\let\hlipl\hlkwb
\usepackage
{
framed
}
\makeatletter
\newenvironment
{
kframe
}{
%
\def\at
@end@of@kframe
{}
%
\ifinner\ifhmode
%
\def\at
@end@of@kframe
{
\end{minipage}
}
%
\begin{minipage}
{
\columnwidth
}
%
\fi\fi
%
\def\FrameCommand
##1
{
\hskip\@
totalleftmargin
\hskip
-
\fboxsep
\colorbox
{
shadecolor
}{
##1
}
\hskip
-
\fboxsep
% There is no \\@totalrightmargin, so:
\hskip
-
\linewidth
\hskip
-
\@
totalleftmargin
\hskip\columnwidth
}
%
\MakeFramed
{
\advance\hsize
-
\width
\@
totalleftmargin
\z
@
\linewidth\hsize
\@
setminipage
}}
%
{
\par\unskip\endMakeFramed
%
\at
@end@of@kframe
}
\makeatother
\definecolor
{
shadecolor
}{
rgb
}{
.97, .97, .97
}
\definecolor
{
messagecolor
}{
rgb
}{
0, 0, 0
}
\definecolor
{
warningcolor
}{
rgb
}{
1, 0, 1
}
\definecolor
{
errorcolor
}{
rgb
}{
1, 0, 0
}
\newenvironment
{
knitrout
}{}{}
% an empty environment to be redefined in TeX
\usepackage
{
alltt
}
% use "amsart" instead of "article" for AMSLaTeX format
%\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
%\geometry{letterpaper} % ... or a4paper or a5paper or ...
%\geometry{landscape} % Activate for for rotated page geometry
%\usepackage[parfill]{parskip} % Activate to begin paragraphs with an empty line rather than an indent
%\usepackage{graphicx} % Use pdf, png, jpg, or eps with pdflatex; use eps in DVI mode
% TeX will automatically convert eps --> pdf in pdflatex
%\usepackage{amssymb}
\usepackage
[utf8]
{
inputenc
}
%\usepackage[cyr]{aeguill}
%\usepackage[francais]{babel}
%\usepackage{hyperref}
\title
{
Positive selection on genes interacting with SARS-Cov2, comparison of different analysis
}
\author
{
Marie Cariou
}
\date
{
janvier 2021
}
% Activate to display a given date or no date
\IfFileExists
{
upquote.sty
}{
\usepackage
{
upquote
}}{}
\begin{document}
\maketitle
\tableofcontents
\newpage
\section
{
Data
}
Analysis were formatted by the script covid
\_
comp
\_
script0
\_
table.Rnw.
\begin{knitrout}
\definecolor
{
shadecolor
}{
rgb
}{
0.969, 0.969, 0.969
}
\color
{
fgcolor
}
\begin{kframe}
\begin{alltt}
\hlstd
{
workdir
}
\hlkwb
{
<-
}
\hlstr
{
"/home/adminmarie/Documents/CIRI
_
BIBS
_
projects/2020
_
05
_
Etienne
_
covid/"
}
\hlstd
{
tab
}
\hlkwb
{
<-
}
\hlkwd
{
read.delim
}
\hlstd
{
(
}
\hlkwd
{
paste0
}
\hlstd
{
(workdir,
}
\hlstr
{
"covid
_
comp/covid
_
comp
_
complete.txt"
}
\hlstd
{
),
}
\hlkwc
{
h
}
\hlstd
{
=T,
}
\hlkwc
{
sep
}
\hlstd
{
=
}
\hlstr
{
"
\textbackslash
{}
t"
}
\hlstd
{
)
}
\hlkwd
{
dim
}
\hlstd
{
(tab)
}
\end{alltt}
\begin{verbatim}
## [1] 333 161
\end{verbatim}
\end{kframe}
\end{knitrout}
\section
{
Comparison Bats
}
\subsection
{
Cooper-bats results VS DGINN-bats results
}
\begin{knitrout}
\definecolor
{
shadecolor
}{
rgb
}{
0.969, 0.969, 0.969
}
\color
{
fgcolor
}
\begin{kframe}
\begin{alltt}
\hlkwd
{
plot
}
\hlstd
{
(tab
}
\hlopt
{$}
\hlstd
{
cooper.batsAverage
_
dNdS,
}
\hlkwd
{
as.numeric
}
\hlstd
{
(
}
\hlkwd
{
as.character
}
\hlstd
{
(
tab
}
\hlopt
{$}
\hlstd
{
bats
_
omegaM0codeml)),
}
\hlkwc
{
xlab
}
\hlstd
{
=
}
\hlstr
{
"Omega Cooper-bats"
}
\hlstd
{
,
}
\hlkwc
{
ylab
}
\hlstd
{
=
}
\hlstr
{
"Omega DGINN-bats"
}
\hlstd
{
)
}
\end{alltt}
{
\ttfamily\noindent\color
{
warningcolor
}{
\#\#
Warning in xy.coords(x, y, xlabel, ylabel, log): NAs introduits lors de la conversion automatique
}}
\begin{alltt}
\hlkwd
{
abline
}
\hlstd
{
(
}
\hlnum
{
0
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
)
}
\end{alltt}
\end{kframe}
\includegraphics
[width=\maxwidth]
{
figure/omegaM7M8bats-1
}
\end{knitrout}
\subsection
{
Cooper-bats VS Hawkins-bats and DGINN-bats VS Hawkins-bats
}
\textit
{
I don't think we have the omega values
}
\section
{
Overlap
}
\subsection
{
Data
}
\begin{knitrout}
\definecolor
{
shadecolor
}{
rgb
}{
0.969, 0.969, 0.969
}
\color
{
fgcolor
}
\begin{kframe}
\begin{alltt}
\hlstd
{
tmp
}
\hlkwb
{
<-
}
\hlkwd
{
na.omit
}
\hlstd
{
(tab[,
}
\hlkwd
{
c
}
\hlstd
{
(
}
\hlstr
{
"Gene.name"
}
\hlstd
{
,
}
\hlstr
{
"bats
_
codemlM7M8.p.value"
}
\hlstd
{
,
}
\hlstr
{
"hawkins
_
Positive.Selection..M8vM8a.p.value"
}
\hlstd
{
,
}
\hlstr
{
"cooper.batsM7.M8
_
p
_
value"
}
\hlstd
{
,
}
\hlstr
{
"bats
_
BUSTED"
}
\hlstd
{
,
}
\hlstr
{
"bats
_
BppM1M2"
}
\hlstd
{
,
}
\hlstr
{
"bats
_
BppM7M8"
}
\hlstd
{
,
}
\hlstr
{
"bats
_
codemlM1M2"
}
\hlstd
{
,
}
\hlstr
{
"bats
_
codemlM7M8"
}
\hlstd
{
)])
}
\hlstd
{
tmp
}
\hlopt
{$}
\hlstd
{
bats
_
codemlM
7
M
8
.p.value
}
\hlkwb
{
<
-
}
\hlkwd
{
as.numeric
}
\hlstd
{
(
}
\hlkwd
{
as.character
}
\hlstd
{
(
tmp
}
\hlopt
{$}
\hlstd
{
bats
_
codemlM7M8.p.value))
}
\end{alltt}
{
\ttfamily\noindent\color
{
warningcolor
}{
\#\#
Warning: NAs introduits lors de la conversion automatique
}}
\begin{alltt}
\hlkwd
{
dim
}
\hlstd
{
(tmp)
}
\end{alltt}
\begin{verbatim}
## [1] 174 9
\end{verbatim}
\end{kframe}
\end{knitrout}
174 genes (present in the 3 experiments)
\subsection
{
Mondrian
}
\begin{knitrout}
\definecolor
{
shadecolor
}{
rgb
}{
0.969, 0.969, 0.969
}
\color
{
fgcolor
}
\begin{kframe}
\begin{alltt}
\hlkwd
{
library
}
\hlstd
{
(Mondrian)
}
\hlstd
{
monddata
}
\hlkwb
{
<-
}
\hlkwd
{
as.data.frame
}
\hlstd
{
(tmp
}
\hlopt
{$}
\hlstd
{
Gene.name
)
}
\hlstd
{
monddata
}
\hlopt
{$}
\hlstd
{
bats
_
hawkins
}
\hlkwb
{
<-
}
\hlkwd
{
ifelse
}
\hlstd
{
(tmp
}
\hlopt
{$}
\hlstd
{
hawkins
_
Positive.Selection..M
8
vM
8
a.p.value
}
\hlopt
{
<
}
\hlnum
{
0
.
05
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlstd
{
monddata
}
\hlopt
{$}
\hlstd
{
bats
_
cooper
}
\hlkwb
{
<-
}
\hlkwd
{
ifelse
}
\hlstd
{
(tmp
}
\hlopt
{$}
\hlstd
{
cooper.batsM
7
.M
8
_
p
_
value
}
\hlopt
{
<
}
\hlnum
{
0
.
05
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlstd
{
dginntmp
}
\hlkwb
{
<
-
}
\hlkwd
{
rowSums
}
\hlstd
{
(
}
\hlkwd
{
cbind
}
\hlstd
{
(
tmp
}
\hlopt
{$}
\hlstd
{
bats
_
codemlM1M2
}
\hlopt
{
==
}
\hlstr
{
"Y"
}
\hlstd
{
, tmp
}
\hlopt
{$}
\hlstd
{
bats
_
codemlM
7
M
8
}
\hlopt
{
==
}
\hlstr
{
"Y"
}
\hlstd
{
,
}
\hlstd
{
tmp
}
\hlopt
{$}
\hlstd
{
bats
_
BppM1M2
}
\hlopt
{
==
}
\hlstr
{
"Y"
}
\hlstd
{
, tmp
}
\hlopt
{$}
\hlstd
{
bats
_
BppM
7
M
8
}
\hlopt
{
==
}
\hlstr
{
"Y"
}
\hlstd
{
, tmp
}
\hlopt
{$}
\hlstd
{
bats
_
BUSTED
}
\hlopt
{
==
}
\hlstr
{
"Y"
}
\hlstd
{
))
}
\hlstd
{
monddata
}
\hlopt
{$}
\hlstd
{
bats
_
dginn
}
\hlkwb
{
<
-
}
\hlkwd
{
ifelse
}
\hlstd
{
(
dginntmp
}
\hlopt
{
>
=
}
\hlnum
{
3
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlkwd
{
mondrian
}
\hlstd
{
(
monddata
[
,
}
\hlnum
{
2
}
\hlopt
{
:
}
\hlnum
{
4
}
\hlstd
{
]
,
}
\hlkwc
{
labels
}
\hlstd
{
=
}
\hlkwd
{
c
}
\hlstd
{
(
}
\hlstr
{
"DGINN >
=
3
"
}
\hlstd
{
,
}
\hlstr
{
"hawkins"
}
\hlstd
{
,
}
\hlstr
{
"Cooper"
}
\hlstd
{
))
}
\end
{
alltt
}
\end
{
kframe
}
\includegraphics
[
width
=
\maxwidth
]
{
figure
/
mondrianbats
-
1
}
\begin
{
kframe
}
\begin
{
alltt
}
\hlstd
{
monddata
}
\hlopt
{$}
\hlstd
{
bats
_
dginn
}
\hlkwb
{
<-
}
\hlkwd
{
ifelse
}
\hlstd
{
(dginntmp
}
\hlopt
{
>=
}
\hlnum
{
4
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlkwd
{
mondrian
}
\hlstd
{
(monddata[,
}
\hlnum
{
2
}
\hlopt
{
:
}
\hlnum
{
4
}
\hlstd
{
],
}
\hlkwc
{
labels
}
\hlstd
{
=
}
\hlkwd
{
c
}
\hlstd
{
(
}
\hlstr
{
"DGINN >=4"
}
\hlstd
{
,
}
\hlstr
{
"hawkins"
}
\hlstd
{
,
}
\hlstr
{
"Cooper"
}
\hlstd
{
))
}
\end{alltt}
\end{kframe}
\includegraphics
[width=\maxwidth]
{
figure/mondrianbats-2
}
\end{knitrout}
\subsection
{
subsetR
}
\begin{knitrout}
\definecolor
{
shadecolor
}{
rgb
}{
0.969, 0.969, 0.969
}
\color
{
fgcolor
}
\begin{kframe}
\begin{alltt}
\hlkwd
{
library
}
\hlstd
{
(UpSetR)
}
\hlstd
{
upsetdata
}
\hlkwb
{
<-
}
\hlkwd
{
as.data.frame
}
\hlstd
{
(tmp
}
\hlopt
{$}
\hlstd
{
Gene.name
)
}
\hlstd
{
upsetdata
}
\hlopt
{$}
\hlstd
{
bats
_
hawkins
}
\hlkwb
{
<-
}
\hlkwd
{
ifelse
}
\hlstd
{
(tmp
}
\hlopt
{$}
\hlstd
{
hawkins
_
Positive.Selection..M
8
vM
8
a.p.value
}
\hlopt
{
<
}
\hlnum
{
0
.
05
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlstd
{
upsetdata
}
\hlopt
{$}
\hlstd
{
bats
_
cooper
}
\hlkwb
{
<-
}
\hlkwd
{
ifelse
}
\hlstd
{
(tmp
}
\hlopt
{$}
\hlstd
{
cooper.batsM
7
.M
8
_
p
_
value
}
\hlopt
{
<
}
\hlnum
{
0
.
05
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlstd
{
upsetdata
}
\hlopt
{$}
\hlstd
{
bats
_
dginn
}
\hlkwb
{
<-
}
\hlkwd
{
ifelse
}
\hlstd
{
(dginntmp
}
\hlopt
{
>=
}
\hlnum
{
3
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlkwd
{
upset
}
\hlstd
{
(upsetdata,
}
\hlkwc
{
nsets
}
\hlstd
{
=
}
\hlnum
{
3
}
\hlstd
{
,
}
\hlkwc
{
matrix.color
}
\hlstd
{
=
}
\hlstr
{
"#DC267F"
}
\hlstd
{
,
}
\hlkwc
{
main.bar.color
}
\hlstd
{
=
}
\hlstr
{
"#648FFF"
}
\hlstd
{
,
}
\hlkwc
{
sets.bar.color
}
\hlstd
{
=
}
\hlstr
{
"#FE6100"
}
\hlstd
{
)
}
\end{alltt}
\end{kframe}
\includegraphics
[width=\maxwidth]
{
figure/subsetbats-1
}
\begin{kframe}\begin{alltt}
\hlstd
{
upsetdata
}
\hlopt
{$}
\hlstd
{
bats
_
dginn
}
\hlkwb
{
<
-
}
\hlkwd
{
ifelse
}
\hlstd
{
(
dginntmp
}
\hlopt
{
>
=
}
\hlnum
{
4
}
\hlstd
{
,
}
\hlnum
{
1
}
\hlstd
{
,
}
\hlnum
{
0
}
\hlstd
{
)
}
\hlkwd
{
upset
}
\hlstd
{
(
upsetdata,
}
\hlkwc
{
nsets
}
\hlstd
{
=
}
\hlnum
{
3
}
\hlstd
{
,
}
\hlkwc
{
matrix.color
}
\hlstd
{
=
}
\hlstr
{
"#DC
267
F"
}
\hlstd
{
,
}
\hlkwc
{
main.bar.color
}
\hlstd
{
=
}
\hlstr
{
"#
648
FFF"
}
\hlstd
{
,
}
\hlkwc
{
sets.bar.color
}
\hlstd
{
=
}
\hlstr
{
"#FE
6100
"
}
\hlstd
{
)
}
\end
{
alltt
}
\end
{
kframe
}
\includegraphics
[
width
=
\maxwidth
]
{
figure
/
subsetbats
-
2
}
\end
{
knitrout
}
\end
{
document
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment