This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/x-template" id="dropdown-template"> | |
<div class="dropdown" v-show="show" v-bind:class="originClass" transition="dropdown"> | |
<slot>No dropdown content!</slot> | |
</div> | |
</script> | |
<script type="text/x-template" id="datagrid-template"> | |
<table id="{{ id }}" class="table-striped datagrid"> | |
<thead> | |
<tr> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### prerequisites | |
sudo yum groupinstall "Development Tools" | |
git --version | |
gcc --version | |
bash --version | |
python --version # (system) | |
sudo yum install -y openssl-devel readline-devel zlib-devel | |
sudo yum update | |
### install `pyenv` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Q11 | |
MustardAnswer <- c(1, 1) | |
SeigleAnswer <- c(1, 1) | |
splittedBySpecies <- split( data , f = data$Espece ) | |
for (species in splittedBySpecies) { | |
splittedBySpeciesAndDensity <- split (splittedBySpecies, f = splittedBySpecies$DensiteTot) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data<-read.table("competition.csv", | |
sep=";", | |
header=TRUE, | |
dec=",") | |
# Ajoute la colonne de poids individuel | |
data$PoidsInd <- data$Poids/data$DensiteSp | |
# On sépare les deux espèces |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// Commented-out options have their default values. | |
"include": ["src/**/*"], | |
"exclude": ["node_modules/*"], | |
// "files": [], // A list of relative or absolute file paths to include. | |
// "extends": "", // A string containing a path to another configuration file to inherit from. | |
// "references": [], // An array of objects `{"path": "./to/dirOrConfig"}` that specifies projects to reference. | |
// "compileOnSave": false, // Signals to the IDE to generate all files for a given tsconfig.json upon saving. | |
"compilerOptions": { |
OlderNewer