Skip to content

Instantly share code, notes, and snippets.

@abhishekdagarit
abhishekdagarit / lists in r.md
Last active October 30, 2017 18:32
Lists in R

Creating a list

A list is like a super data type that can hold any other data type inside it.

# Vector with numerics from 12 up to 100
my_vector <- 12:100 

# Matrix with numerics from 1 up to 8
my_matrix &lt;- matrix(1:8, ncol = 2)
@abhishekdagarit
abhishekdagarit / swirl.md
Last active October 30, 2017 15:24
swirl

#SWIRL

Its basically a package that if installed can help in learning and practicing R, right inside the R console.

Main Swirl webpage

Steps

  1. Get R
@abhishekdagarit
abhishekdagarit / SAS rules.md
Last active October 12, 2017 10:12
SAS rules

SAS rules

Case sensitive

SAS in not case sensitive.

proC PrinT daTa = woRK.IntrO;
WHerE Rating = 2;
run;
@abhishekdagarit
abhishekdagarit / Merging datasets in SAS.md
Last active September 27, 2017 15:42
Merging datasets in SAS

Merging datasets in SAS

The process is straight forward.

Data 1

data d1;
input name$ age;
@abhishekdagarit
abhishekdagarit / SQL select statement.md
Last active September 27, 2017 15:26
Basic SQL commands to be used in SAS as well as any other place.

SQL select statement

Select

Simplest Select satament

proc sql;
select * 
@abhishekdagarit
abhishekdagarit / Importing a file in SAS.md
Last active September 27, 2017 14:55
Creating/Importing data in SAS

Creating/Importing a file in SAS


Creating a dataset inside SAS

There is a simple way to add some data inside data step.

It uses datalines

@abhishekdagarit
abhishekdagarit / html file.css
Created June 4, 2017 18:05
Code for putting an image as banner in Bootstrap
#banner{
background-image: url('images/mac.jpg');
min-height: 800px;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
height:100%;
&nbsp;
@abhishekdagarit
abhishekdagarit / Align an image to centre in bootstrap.html
Created June 4, 2017 18:08
Align an image to centre in bootstrap
use class “centre-block"
There is .center-block class in Twitter Bootstrap 3 (Since v3.0.1), so use:
<img src="..." alt="..." class="img-responsive center-block" />
@abhishekdagarit
abhishekdagarit / Working a tableu.md
Last active September 23, 2017 08:37
Working a tableau

Working a tableau

The parts involved in a tableau are:

  1. Hierarchies
  2. Groupings
  3. Filters
  4. Drag Drop Feature.
  5. Cleaning the visualisation: Uncheck what you do not need.
  6. Dashboard