All Projects → egap → methods-guides

egap / methods-guides

Licence: other
EGAP methods guides

Programming Languages

HTML
75241 projects
TeX
3793 projects
r
7636 projects
Makefile
30231 projects
python
139335 projects - #7 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to methods-guides

Silx
silx toolkit
Stars: ✭ 69 (+245%)
Mutual labels:  experiments
Infiniteboost
InfiniteBoost: building infinite ensembles with gradient descent
Stars: ✭ 180 (+800%)
Mutual labels:  experiments
DiscordLookup
DiscordLookup | Get more out of Discord with Discord Lookup! Snowflake Decoder, Guild List with Stats, Invite Info and more...
Stars: ✭ 86 (+330%)
Mutual labels:  experiments
Mlogger
a lightweight and simple logger for Machine Learning
Stars: ✭ 122 (+510%)
Mutual labels:  experiments
Threejs Sandbox
Set of experiments and extensions to THREE.js.
Stars: ✭ 163 (+715%)
Mutual labels:  experiments
Plynx
PLynx is a domain agnostic platform for managing reproducible experiments and data-oriented workflows.
Stars: ✭ 192 (+860%)
Mutual labels:  experiments
Plz
Say the magic word 😸
Stars: ✭ 31 (+55%)
Mutual labels:  experiments
adopy
Adaptive Design Optimization for Experimental Tasks
Stars: ✭ 37 (+85%)
Mutual labels:  experiments
Sacredboard
Dashboard for sacred. Monitor and access your past machine learning experiments.
Stars: ✭ 169 (+745%)
Mutual labels:  experiments
guides
Dealerdirect guides for getting things done, be a programming role-model, coding in style and being the better colleague.
Stars: ✭ 21 (+5%)
Mutual labels:  guides
Justtweak
JustTweak is a framework for feature flagging and A/B testing for iOS apps.
Stars: ✭ 136 (+580%)
Mutual labels:  experiments
Qcodes
Modular data acquisition framework
Stars: ✭ 153 (+665%)
Mutual labels:  experiments
tricks
Run experiments effortlessly on top of Kubernetes
Stars: ✭ 24 (+20%)
Mutual labels:  experiments
Doodles
Web Experiments I do for fun.
Stars: ✭ 106 (+430%)
Mutual labels:  experiments
awesome-backend
🚀 A curated and opinionated list of resources (English & Russian) for Backend developers | Структурированный список ресурсов для изучения Backend разработки
Stars: ✭ 826 (+4030%)
Mutual labels:  guides
Neuropsydia.py
A Python Module for Creating Experiments, Tasks and Questionnaires.
Stars: ✭ 51 (+155%)
Mutual labels:  experiments
Xamarin Playground
Random cool stuff I play around using Xamarin.. :3 Some of these cool projects I feature them on my blog, with step by step explanation. :) Don't forget to check it out. Go to: theconfuzedsourcecode.wordpress.com
Stars: ✭ 183 (+815%)
Mutual labels:  experiments
pixel-experiments
Various experiments using the pixel library
Stars: ✭ 86 (+330%)
Mutual labels:  experiments
ficam-playbooks
The Federal Identity Credentials and Access Management program publishes guides and playbooks to help U.S. federal executive agencies implement, maintain, and modernize identity management systems.
Stars: ✭ 30 (+50%)
Mutual labels:  guides
handbook
📙 ErgoServ Developer's Handbook - a collection of guides, recipes, and scripts for helping you get things done, better.
Stars: ✭ 46 (+130%)
Mutual labels:  guides

EGAP methods guides

How to contribute.

For now, please make an issue and/or fork and a pull request specifying the methods guide in question.

When you make a pull request with a change in one language, we will try to incorporate those changes in the other languages. If it is easy to make the change in other languages please do so as well.

Style Guide

We use plain R+markdown for these guides. Since they are served in iFrames on http://egap.org links do not work so well. Because of that, we recommend using [Hello, world!](http://example.com/){target="_blank"} when you insert links.

How to make webpages from these files.

Open RStudio. If not already loaded, load methods-guides.Rproj file before proceeding.

In RStudio, click "Knit to HTML".

At the R console do:

library(rmarkdown)
render("nameoffile.Rmd")

Once you have an html file, if you haven't already changed the links to open in a new tab do something like this at the command line to loop through all directories:

for X in */; do cd "$X"; sed -i.bak 's|href="http|target="_blank" href="http|g' *.html; cd ..; done

Or do this in a single directory:

sed -i.bak 's|href="http|target="_blank" href="http|g' *.html

To recreate all of the guides

We have a Makefile so you can type make -n all to see what guides would need to be recompiled (i.e. might haven't been compiled in a while.) And the type make all to recompile them all.

If you have opened the methods-guides.Rproj in Rstudio you might see a "build" tab (near "Environment", "History", etc..) And there is a button called Build All which does the same thing. (NOte for now: This almost works for all guides. Still working on it for some guides.)

Here is a one liner if you've installed the fd utility for OS X using homebrew or on linux:

for X in `fd  Rmd .`;do Rscript -e "rmarkdown::render('$X')"; done

When writing new guides

To ensure that links are opened in a new tab write links like this [Hello, world!](http://example.com/){target="_blank"}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].