Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Additional_data
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor 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
Verweij, Stefan
Additional_data
Commits
29b8127a
Commit
29b8127a
authored
8 years ago
by
Verweij, Stefan
Browse files
Options
Downloads
Patches
Plain Diff
Delete Command_Lines_R.txt
parent
c9ff8462
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Command_Lines_R.txt
+0
-22
0 additions, 22 deletions
Command_Lines_R.txt
with
0 additions
and
22 deletions
Command_Lines_R.txt
deleted
100644 → 0
+
0
−
22
View file @
c9ff8462
#Command Lines used to plot the bimodal distribution:
#The chosen input file contained the GC and GC3 values against their percentage in the CDS
>GC3 <- read.table(choose.files(), h=T)
>ggplot(GC3, aes(GC3, CDS))
+geom_point()
+geom_lline(color=”red”)
+ggtitle(“B”)
#Command Lines used for randomization:
#The chosen input file contained all the loci of the CDS and their GC3 values
>my.data <- as.numeric(as.vector(read.table(choose.files())[,1]))
>replicate(1000, mean(sample(my.data, 590)))
#Command Lines used to plot normal distribution + observed mean:
#The chosen input files were 1) ND: data of randomization and 2) NDobs: data containing observed mean
>ND <- read.table(choose.files(), h=T)
>NDobs <- read.table(choose.files(), h=T)
>ggplot(ND,aes(GC3,Appearance))
+geom_point()
+geom_smooth(color="red",size=3)
+stat_function(fun=dnorm,color="grey")
+geom_point(data=NDobs,shape=21,color="black",fill="yellow",size=3,stroke=3)
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