User:Timhowardriley

From Wikipedia, the free encyclopedia
BScThis user has a Bachelor of Science degree in Computer Science.
This user is writing a book.
This user is a software engineer.
C-5This user is a professional C programmer.
This user programmed the research databases at the Everglades National Park.
This user used to commute daily to here.
This user's first computer was a TRS-80 Model I.
This user contributes using Vim.
mysqlThis user writes programs that access MySQL.
This user contributes using Linux.
This user misses his 1966 Ford Mustang Convertible.
This user just LOVES to cycle here.
This user plays the trombone.
This user served in the Army Band at Fort Benning.
This user has a website, which can be found here.
This user believes Be Afraid is an unfortunate reality. "You should also learn that Wikipedia users often display ownership of articles they've edited."


R programming language[edit]

R is a programming language for statistical computing, data visualization, and data analysis.

Examples[edit]

Mean -- a measure of center[edit]

A numeric data set may have a central tendency — where some of the most typical data points reside.[1] The arithmetic mean (average) is the most commonly used measure of central tendency.[1] The mean of a numeric data set is the sum of the data points divided by the number of data points.[1]

Let = a list of data points.
Let = the number of data points.
Let = the mean of a data set.

Suppose a sample of four observations of Celsius temperature measurements were taken 12 hours apart.

Let = a list of degrees Celsius data points of 30, 27, 31, 28.

This R computer program will output the mean of :

# The c() function "combines" a list into a single object.
x <- c( 30, 27, 31, 28 )

sum <- sum( x )
length <- length( x )
mean <- sum / length

message( "Mean:" )
print( mean )

Note: R can have the same identifier represent both a function name and its result. For more information, visit scope.

Output:

Mean:
[1] 29

This R program will execute the native mean() function to output the mean of x:

x <- c( 30, 27, 31, 28 )

message( "Mean:" )
print( mean( x ) )

Output:

Mean:
[1] 29

Standard Deviation -- a measure of dispersion[edit]

A standard deviation of a numeric data set is an indication of the average distance all the data points are from the mean.[2] For a data set with a small amount of variation, then each data point will be close to the mean, so the standard deviation will be small.[2]

Let = a list of data points.
Let = the number of data points.
Let = the standard deviation of a data set.

Suppose a sample of four observations of Celsius temperature measurements were taken 12 hours apart.

Let = a list of degrees Celsius data points of 30, 27, 31, 28.

This R program will output the standard deviation of :

x <- c( 30, 27, 31, 28 )
distanceFromMean <- x - mean( x )
distanceFromMeanSquared <- distanceFromMean ** 2
distanceFromMeanSquaredSum <- sum( distanceFromMeanSquared )
variance <- distanceFromMeanSquaredSum / ( length( x ) - 1 )
standardDeviation <- sqrt( variance )

message( "Standard deviation:" )
print( standardDeviation )

Output:

Standard deviation:
[1] 1.825742

This R program will execute the native sd() function to output the standard deviation of :

x <- c( 30, 27, 31, 28 )

message( "Standard deviation:" )
print( sd( x ) )

Output:

Standard deviation:
[1] 1.825742

Linear regression -- a measure of relation[edit]

A scatter plot resembling a linear relationship has infinitely many[3] straight lines that will pass close to all the data points (depicted in red). The blue regression line (generally called curve fit) is the one straight line that has the minimum average distance (depicted in green) from all the points to the line.

A phenomenon may be the result of one or more observable events. For example, the phenomenon of skiing accidents may be the result of having snow in the mountains. A method to measure whether or not a numeric data set is related to another data set is linear regression.[4]

Let = a data set of independent data points, in which each point occurred at a specific time.
Let = a data set of dependent data points, in which each point occurred at the same time of an independent data point.

If a linear relationship exists, then a scatter plot of the two data sets will show a pattern that resembles a straight line.[5] If a straight line is embedded into the scatter plot such that the average distance from all the points to the line is minimal, then the line is called a regression line. The equation of the regression line is called the regression equation.[6]

The regression equation is a linear equation; therefore, it has a slope and y-intercept. The format of the regression equation is .[7][a]

Let = the slope of the regression equation.
Let = the y-intercept of the regression equation.

Suppose a sample of four observations of Celsius temperature measurements were taken 12 hours apart. At the same time, the thermometer was switched to Fahrenheit temperature and another measurement was taken.

Let = a list of degrees Celsius data points of 30, 27, 31, 28.
Let = a list of degrees Fahrenheit data points of 86.0, 80.6, 87.8, 82.4.

This R program will output the slope and y-intercept of a linear relationship in which depends upon :

x <- c( 30, 27, 31, 28 )
y <- c( 86.0, 80.6, 87.8, 82.4 )

# Build the numerator
independentDistanceFromMean <- x - mean( x )
sampledDependentDistanceFromMean <- y - mean( y )

independentDistanceTimesSampledDistance <-
    independentDistanceFromMean *
    sampledDependentDistanceFromMean

independentDistanceTimesSampledDistanceSum <-
    sum( independentDistanceTimesSampledDistance )

# Build the denominator
independentDistanceFromMeanSquared <-
    independentDistanceFromMean ** 2

independentDistanceFromMeanSquaredSum <-
    sum( independentDistanceFromMeanSquared )

# Slope is rise over run
slope <-
    independentDistanceTimesSampledDistanceSum /
    independentDistanceFromMeanSquaredSum

yIntercept <- mean( y ) - slope * ( mean( x ) )

message( "Slope:" )
print( slope )

message( "Y-intercept:" )
print( yIntercept )

Output:

Slope:
[1] 1.8
Y-intercept:
[1] 32

This R program will execute the native functions to output the slope and y-intercept:

x <- c( 30, 27, 31, 28 )
y <- c( 86.0, 80.6, 87.8, 82.4 )

# Execute lm() with Fahrenheit depends upon Celsius
linearModel <- lm( y ~ x )

# coefficients() returns a structure containing the slope and y intercept
coefficients <- coefficients( linearModel )

# Extract the slope from the structure
slope <- coefficients[["x"]]

# Extract the y intercept from the structure
yIntercept <- coefficients[["(Intercept)"]]

message( "Slope:" )
print( slope )

message( "Y-intercept:" )
print( yIntercept )

Output:

Slope:
[1] 1.8
Y-intercept:
[1] 32

Coefficient of determination -- a percentage of variation[edit]

The coefficient of determination determines the percentage of variation explained by the independent variable.[8] It always lies between 0 and 1.[9] A value of 0 indicates no relationship between the two data sets, and a value near 1 indicates the regression equation is extremely useful for making predictions.[10]

Let = the data set of predicted response data points when the independent data points are passed through the regression equation.
Let = the coefficient of determination in a relationship between an independent variable and a dependent variable.

This R program will output the coefficient of determination of the linear relationship between and :

x <- c( 30, 27, 31, 28 )
y <- c( 86.0, 80.6, 87.8, 82.4 )

# Build the numerator
linearModel <- lm( y ~ x )
coefficients <- coefficients( linearModel )
slope <- coefficients[["x"]]
yIntercept <- coefficients[["(Intercept)"]]
predictedResponse <- yIntercept + ( slope * x )

predictedResponseDistanceFromMean <-
    predictedResponse - mean( y )

predictedResponseDistanceFromMeanSquared <-
    predictedResponseDistanceFromMean ** 2

predictedResponseDistanceFromMeanSquaredSum <-
    sum( predictedResponseDistanceFromMeanSquared )

# Build the denominator
sampledResponseDistanceFromMean <- y - mean( y )

sampledResponseDistanceFromMeanSquared <-
    sampledResponseDistanceFromMean ** 2

sampledResponseDistanceFromMeanSquaredSum <-
    sum( sampledResponseDistanceFromMeanSquared )

coefficientOfDetermination <-
    predictedResponseDistanceFromMeanSquaredSum /
    sampledResponseDistanceFromMeanSquaredSum

message( "Coefficient of determination:" )
print( coefficientOfDetermination )

Output:

Coefficient of determination:
[1] 1

This R program will execute the native functions to output the coefficient of determination:

x <- c( 30, 27, 31, 28 )
y <- c( 86.0, 80.6, 87.8, 82.4 )

linearModel <- lm( y ~ x )
summary <- summary( linearModel )
coefficientOfDetermination <- summary[["r.squared"]]

message( "Coefficient of determination:" )
print( coefficientOfDetermination )

Output:[b]

Coefficient of determination:
[1] 1

Scatter plot[edit]

This R program will display a scatter plot with an embedded regression line and regression equation illustrating the relationship between and :

x <- c( 30, 27, 31, 28 )
y <- c( 86.0, 80.6, 87.8, 82.4 )

linearModel <- lm( y ~ x )
coefficients <- coefficients( linearModel )
slope <- coefficients[["x"]]
intercept <- coefficients[["(Intercept)"]]

# Execute paste() to build the regression equation string
regressionEquation <- paste( "y =", intercept, "+", slope, "x" )

# Display a scatter plot with the regression line and equation embedded
plot(
    x,
	y,
	main = "Fahrenheit Depends Upon Celsius",
	sub = regressionEquation,
	xlab = "Degress Celsius",
	ylab = "Degress Fahrenheit",
	abline( linearModel ) )

Output:

Programming[edit]

R is an interpreted language, so programmers typically access it through a command-line interpreter. If a programmer types 1+1 at the R command prompt and presses enter, the computer replies with 2.[11] Programmers also save R programs to a file then execute the batch interpreter Rscript.[12]

Object[edit]

R stores data inside an object. An object is assigned a name which the computer program uses to set and retrieve a value.[13] An object is created by placing its name to the left of the symbol-pair <-.[14] The symbol-pair <- is called the assignment operator.[15]

To create an object named x and assign it the integer value 82:

x <- 82L
print( x )

Output:

[1] 82

The [1] displayed before the number is a subscript. It shows the container for this integer is index one of an array.

Vector[edit]

The most primitive R object is the vector.[16] A vector is a one dimensional array of data. To assign multiple elements to the array, use the c() function to "combine" the elements. The elements must be the same data type.[17] R lacks scalar data types, which are placeholders for a single word — usually an integer. Instead, a single integer is stored into the first element of an array. The single integer is retrieved using the index subscript of [1].[c]

R program to store and retrieve a single integer:

store <- 82L
retrieve <- store[1]
print( retrieve[1] )

Output:

[1] 82
Element-wise operation[edit]

When an operation is applied to a vector, R will apply the operation to each element in the array. This is called an element-wise operation.[18]

This example creates the object named x and assigns it integers 1 through 3. The object is displayed and then again with one added to each element:

x <- 1:3
print( x )
print( x + 1 )

Output:

[1] 1 2 3
[1] 2 3 4

To achieve the many additions, R implements vector recycling.[18] The numeral one following the plus sign (+) is converted into an internal array of three ones. The + operation simultaneously loops through both arrays and performs the addition on each element pair. The results are stored into another internal array of three elements which is returned to the print() function.

Numeric vector[edit]

A numeric vector is used to store integers and floating point numbers.[19] The primary characteristic of a numeric vector is the ability to perform arithmetic on the elements.[19]

Integer vector[edit]

By default, integers (numbers without a decimal point) are stored as floating point. To force integer memory allocation, append an L to the number. As an exception, the sequence operator : will, by default, allocate integer memory.

R program:

x <- 82L
print( x[1] )
message( "Data type:" )
typeof( x )

Output:

[1] 82
Data type:
[1] "integer"

R program:

x <- c( 1L, 2L, 3L )
print( x )
message( "Data type:" )
typeof( x )

Output:

[1] 1 2 3
Data type:
[1] "integer"

R program:

x <- 1:3
print( x )
message( "Data type:" )
typeof( x )

Output:

[1] 1 2 3
Data type:
[1] "integer"
Double vector[edit]

A double vector stores real numbers, which are also known as floating point numbers. The memory allocation for a floating point number is double precision.[19] Double precision is the default memory allocation for numbers with or without a decimal point.

R program:

x <- 82
print( x[1] )
message( "Data type:" )
typeof( x )

Output:

[1] 82
Data type:
[1] "double"

R program:

x <- c( 1, 2, 3 )
print( x )
message( "Data type:" )
typeof( x )

Output:

[1] 1 2 3
Data type:
[1] "double"
Logical vector[edit]

A logical vector stores binary data — either TRUE or FALSE. The purpose of this vector is to store the result of a comparison.[20] A logical datum is expressed as either TRUE, T, FALSE, or F.[20] The capital letters are required, and no quotes surround the constants.[20]

R program:

x <- 3 < 4
print( x[1] )
message( "Data type:" )
typeof( x )

Output:

[1] TRUE
Data type:
[1] "logical"

Two vectors may be compared using the following logical operators:[21]


Operator Syntax Tests
> a > b Is a greater than b?
>= a >= b Is a greater than or equal to b?
< a < b Is a less than b?
<= a <= b Is a less than or equal to b?
== a == b Is a equal to b?
!= a != b Is a not equal to b?
Character vector[edit]

A character vector stores character strings.[22] Strings are created by surrounding text in double quotation marks.[22]

R program:

x <- "hello world"
print( x[1] )
message( "Data type:" )
typeof( x )

Output:

[1] "hello world"
Data type:
[1] "character"

R program:

x <- c( "hello", "world" )
print( x )
message( "Data type:" )
typeof( x )

Output:

[1] "hello" "world"
Data type:
[1] "character"
Factor[edit]

A Factor is a vector that stores a categorical variable.[23] The factor() function converts a text string into an enumerated type, which is stored as an integer.[24]

In experimental design, a factor is an independent variable to test (an input) in a controlled experiment.[25] A controlled experiment is used to establish causation, not just association.[26] For example, one could notice that an increase in hot chocolate sales is associated with an increase in skiing accidents.

An experimental unit is an item that an experiment is being performed upon. If the experimental unit is a person, then it is known as a subject. A response variable (also known as a dependent variable) is a possible outcome from an experiment. A factor level is a characteristic of a factor. A treatment is an environment consisting of a combination of one level (characteristic) from each of the input factors. A replicate is the execution of a treatment on an experimental unit and yields response variables.[27]

This example builds two R programs to model an experiment to increase the growth of a species of cactus. Two factors are tested:

  1. water levels of none, light, or medium
  2. superabsorbent polymer levels of not used or used

R program to setup the design:

# Step 1 is to establish the levels of a factor.
# Vector of the water levels:
waterLevel <-
    c(
        "none",
        "light",
        "medium" )

# Step 2 is to create the factor.
# Vector of the water factor:
waterFactor <-
    factor(
        # Although a subset is possible, use all of the levels.
        waterLevel,
        levels = waterLevel )

# Vector of the polymer levels:
polymerLevel <-
    c(
        "notUsed",
        "used" )

# Vector of the polymer factor:
polymerFactor <-
    factor(
        polymerLevel,
        levels = polymerLevel )

# The treatments are the Cartesian product of both factors.
treatmentCartesianProduct <-
    expand.grid(
        waterFactor,
        polymerFactor )

message( "Water factor:" )
print( waterFactor )

message( "\nPolymer factor:" )
print( polymerFactor )

message( "\nTreatment Cartesian product:" )
print( treatmentCartesianProduct )

Output:

Water factor:
[1] none   light  medium
Levels: none light medium

Polymer factor:
[1] notUsed used   
Levels: notUsed used

Treatment Cartesian product:
    Var1    Var2
1   none notUsed
2  light notUsed
3 medium notUsed
4   none    used
5  light    used
6 medium    used

R program to store and display the results:

experimentalUnit <- c( "cactus1", "cactus2", "cactus3" )

replicateWater <- c( "none", "light", "medium" )
replicatePolymer <- c( "notUsed", "used", "notUsed" )
replicateInches <- c( 82L, 83L, 84L )

response <-
    data.frame(
        experimentalUnit,
        replicateWater,
        replicatePolymer,
        replicateInches )

print( response )

Output:

  experimentalUnit replicateWater replicatePolymer replicateInches
1          cactus1           none          notUsed              82
2          cactus2          light             used              83
3          cactus3         medium          notUsed              84

Data frame[edit]

A data frame stores a two-dimensional array.[28] The horizontal dimension is a list of vectors. The vertical dimension is a list of rows. It is the most useful structure for data analysis.[29] Data frames are created using the data.frame() function. The input is a list of vectors (of any data type). Each vector becomes a column in a table. The elements in each vector are aligned to form the rows in the table.

R program:

integer <- c( 82L, 83L )
string <- c( "hello", "world" )
data.frame <- data.frame( integer, string )
print( data.frame )
message( "Data type:" )
class( data.frame )

Output:

  integer string
1      82  hello
2      83  world
Data type:
[1] "data.frame"

Data frames can be deconstructed by providing a vector's name between double brackets. This returns the original vector. Each element in the returned vector can be accessed by its index number.

R program to extract the word "world". It is stored in the second element of the "string" vector:

integer <- c( 82L, 83L )
string <- c( "hello", "world" )
data.frame <- data.frame( integer, string )
vector <- data.frame[["string"]]
print( vector[2] )
message( "Data type:" )
typeof( vector )

Output:

[1] "world"
Data type:
[1] "character"

Vectorized coding[edit]

Vectorized coding is a method to produce quality R computer programs that take advantage of R's strengths.[30] The R language is designed to be fast at logical testing, subsetting, and element-wise execution.[30] On the other hand, R does not have a fast for loop.[31] For example, R can search-and-replace faster using logical vectors than by using a for loop.[31]

For loop[edit]

A for loop repeats a block of code for a specific amount of iterations.[32]

Example to search-and-replace using a for loop:

vector <- c( "one", "two", "three" )

for ( i in 1:length( vector ) )
{
    if ( vector[ i ] == "one" )
    {
        vector[ i ] <- "1"
    }
}

message( "Replaced vector:" )
print( vector )

Output:

Replaced vector:
[1] "1"  "two" "three"
Subsetting[edit]

R's syntax allows for a logical vector to be used as an index to a vector.[33] This method is called subsetting.[34]

R example:

vector <- c( "one", "two", "three" )

print( vector[ c( TRUE, FALSE, TRUE ) ] )

Output:

[1] "one"    "three"
Change a value using an index number[edit]

R allows for the assignment operator <- to overwrite an existing value in a vector by using an index number.[15]

R example:

vector <- c( "one", "two", "three" )
vector[ 1 ] <- "1"

print( vector )

Output:

[1] "1"   "two"   "three"
Change a value using subsetting[edit]

R also allows for the assignment operator <- to overwrite an existing value in a vector by using a logical vector.

R example:

vector <- c( "one", "two", "three" )
vector[ c( TRUE, FALSE, FALSE ) ] <- "1"

print( vector )

Output:

[1] "1"     "two"   "three"
Vectorized code to search-and-replace[edit]

Because a logical vector may be used as an index, and because the logical operator returns a vector, a search-and-replace can take place without a for loop.

R example:

vector <- c( "one", "two", "three" )
vector[ vector == "one" ] <- "1"

print( vector )

Output:

[1] "1"     "two"   "three"

Functions[edit]

A function is an object that stores computer code instead of data.[35] The purpose of storing code inside a function is to be able to reuse it in another context.[35]

Native functions[edit]

R comes with over 1,000 native functions to perform common tasks.[36] To execute a function:

  1. type in the function's name
  2. type in an open parenthesis (
  3. type in the data to be processed
  4. type in a close parenthesis )

This example rolls a die one time. The native function's name is sample(). The data to be processed are:

  1. a numeric integer vector from one to six
  2. the size parameter instructs sample() to execute the roll one time
sample( 1:6, size=1 )

Possible output:

[1] 6

The R interpreter provides a help screen for each native function. The help screen is displayed after typing in a question mark followed by the function's name:

?sample

Partial output:

Description:
     ‘sample’ takes a sample of the specified size from the elements of
     ‘x’ using either with or without replacement.

Usage:
     sample(x, size, replace = FALSE, prob = NULL)
Function parameters[edit]

The sample() function has available four input parameters. Input parameters are pieces of information that control the function's behavior. Input parameters may be communicated to the function in a combination of three ways:

  1. by position separated with commas
  2. by name separated with commas and the equal sign
  3. left empty

For example, each of these calls to sample() will roll a die one time:

sample( 1:6, 1, F, NULL )
sample( 1:6, 1 )
sample( 1:6, size=1 )
sample( size=1, x=1:6 )

Every input parameter has a name.[37] If a function has many parameters, setting name = data will make the source code more readable.[38] If the parameter's name is omitted, R will match the data in the position order.[38] Usually, parameters that are rarely used will have a default value and may be omitted.

Data coupling[edit]

The output from a function may become the input to another function. This is the basis for data coupling.[39]

This example executes the function sample() and sends the result to the function sum(). It simulates the roll of two dice and adds them up.

sum( sample( 1:6, size=2, replace=TRUE ) )

Possible output:

[1] 7
Functions as parameters[edit]

A function has parameters typically to input data. Alternatively, a function (A) can use a parameter to input another function (B). Function (A) will assume responsibility to execute function (B).

For example, the function replicate() has an input parameter that is a placeholder for another function. This example will execute replicate() once, and replicate() will execute sample() five times. It will simulate rolling a die five times:

replicate( 5, sample( 1:6, size=1 ) )

Possible output:

[1] 2 4 1 4 5
Uniform distribution[edit]

Because each face of a die is equally likely to appear on top, rolling a die many times generates the uniform distribution.[40] This example displays a histogram of a die rolled 10,000 times:

hist( replicate( 10000, sample( 1:6, size=1 ) ) )

The output is likely to have a flat top:

Central limit theorem[edit]

Whereas a numeric data set may have a central tendency, it also may not have a central tendency. Nonetheless, a data set of the arithmetic mean of many samples will have a central tendency to converge to the population's mean. The arithmetic mean of a sample is called the sample mean.[41] The central limit theorem states for a sample size of 30 or more, the distribution of the sample mean () is approximately normally distributed, regardless of the distribution of the variable under consideration ().[42] A histogram displaying a frequency of data point averages will show the distribution of the sample mean resembles a bell-shaped curve.

For example, rolling one die many times generates the uniform distribution. Nonetheless, rolling 30 dice and calculating each average () over and over again generates a normal distribution.

R program to roll 30 dice 10,000 times and plot the frequency of averages:

hist(
    replicate(
        10000,
        mean(
            sample(
                1:6,
                size=30,
                replace=T ) ) ) )

The output is likely to have a bell shape:

Programmer-created functions[edit]

To create a function object, execute the function() statement and assign the result to a name.[43] A function receives input both from global variables and input parameters (often called arguments). Objects created within the function body remain local to the function.

R program to create a function:

# The input parameters are x and y.
# The return value is a numeric double vector.
f <- function(x, y)
{
    first_expression <- x * 2
    second_expression <- y * 3
    first_expression + second_expression

    # The return statement may be omitted
    # if the last expression is unassigned.
    # This will save a few clock cycles.
}

Usage output:

> f(1, 2)
[1] 8

Function arguments are passed in by value.

Generic functions[edit]

R supports generic functions, which is also known as polymorphism. Generic functions act differently depending on the class of the argument passed in. The process is to dispatch the method specific to the class. A common implementation is R's print() function. It can print almost every class of object. For example, print(objectName).[44]

If statements[edit]

R program illustrating if statements:

minimum <- function( a, b )
{
	if ( a < b )
		minimum <- a
	else
		minimum <- b

	return( minimum )
}

maximum <- function( a, b )
{
	if ( a > b )
		maximum <- a
	else
		maximum <- b

	return( maximum )
}

range <- function( a, b, c )
{
	range <-
		maximum( a, maximum( b, c ) ) -
		minimum( a, minimum( b, c ) )

	return( range )
}

range( 10, 4, 7 )

Output:

[1] 6

Programming shortcuts[edit]

R provides three notable shortcuts available to programmers.

Omit the print() function[edit]

If an object is present on a line by itself, then the interpreter will send the object to the print() function.[45]

R example:

integer <- 82L
integer

Output:

[1] 82
Omit the return() statement[edit]

If a programmer-created function omits the return() statement, then the interpreter will return the last unassigned expression.[46]

R example:

f <- function()
{
    # Don't assign the expression to an object.
    82L + 1L
}

Usage output:

> f()
[1] 83
Alternate assignment operator[edit]

The symbol-pair <- assigns a value to an object.[15] Alternatively, = may be used as the assignment operator. However, care must be taken because = closely resembles the logical operator for equality, which is ==.[47]

R example:

integer = 82L
print( integer )

Output:

[1] 82

Normal distribution[edit]

If a numeric data set has a central tendency, it also may have a symmetric looking histogram — a shape that resembles a bell. If a data set has an approximately bell-shaped histogram, it is said to have a normal distribution.[48]

Chest size of Scottish militiamen data set[edit]

In 1817, a Scottish army contractor measured the chest sizes of 5,732 members of a militia unit. The frequency of each size was:[49]


Chest size (inches) Frequency
33 3
34 19
35 81
36 189
37 409
38 753
39 1062
40 1082
41 935
42 646
43 313
44 168
45 50
46 18
47 3
48 1


Create a comma-separated values file[edit]

R has the write.csv() function to convert a data frame into a CSV file.

R program to create chestsize.csv:

chestsize <-
c( 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48 )

frequency <-
c( 3, 19, 81, 189, 409, 753, 1062, 1082, 935, 646, 313, 168, 50, 18, 3, 1 )

dataFrame <- data.frame( chestsize, frequency )

write.csv(
    dataFrame,
    file="chestsize.csv",
    # By default, write.csv() creates the first column as the row number.
    row.names = FALSE )
Import a data set[edit]

The first step in data science is to import a data set.[50]

R program to import chestsize.csv into a data frame:

dataFrame <- read.csv( "chestsize.csv" )
print( dataFrame )

Output:

   chestsize frequency
1         33         3
2         34        19
3         35        81
4         36       189
5         37       409
6         38       753
7         39      1062
8         40      1082
9         41       935
10        42       646
11        43       313
12        44       168
13        45        50
14        46        18
15        47         3
16        48         1
Transform a data set[edit]

The second step in data science is to transform the data into a format that the functions expect.[50] The chest-size data set is summarized to frequency; however, R's normal distribution functions require a numeric double vector.

R function to convert a summarized to frequency data frame into a vector:

# Filename: frequencyDataFrameToVector.R

frequencyDataFrameToVector <-
    function(
        dataFrame,
        dataColumnName,
        frequencyColumnName = "frequency" )
{
    dataVector <- dataFrame[[ dataColumnName ]]
    frequencyVector <- dataFrame[[ frequencyColumnName ]]

    vectorIndex <- 1
    frequencyIndex <- 1
    vector <- NA

    for ( datum in dataVector )
    {
        frequency <- frequencyVector[ frequencyIndex ]

        for ( i in 1:frequency )
        {
            vector[ vectorIndex ] <- datum
            vectorIndex <- vectorIndex + 1
        }

        frequencyIndex <- frequencyIndex + 1
    }

    return ( vector )
}

R has the source() function to include another R source file into the current program.

R program to load and display a summary of the 5,732 member data set:

source( "frequencyDataFrameToVector.R" )

dataFrame <- read.csv( "chestsize.csv" )

chestSizeVector <-
    frequencyDataFrameToVector(
        dataFrame,
        "chestsize" )

message( "Head:" )
head( chestSizeVector )

message( "\nTail:" )
tail( chestSizeVector )

message( "\nCount:" )
length( chestSizeVector )

message( "\nMean:" )
mean( chestSizeVector )

message( "\nStandard deviation:" )
sd( chestSizeVector )

Output:

Head:
[1] 33 33 33 34 34 34

Tail:
[1] 46 46 47 47 47 48

Count:
[1] 5732

Mean:
[1] 39.84892

Standard deviation:
[1] 2.073386
Visualize a data set[edit]

The third step in data science is to visualize the data set.[50] If a histogram of a data set resembles a bell shape, then it is normally distributed.[48]

R program to display a histogram of the data set:

source( "frequencyDataFrameToVector.R" )

dataFrame <- read.csv( "chestsize.csv" )

chestSizeVector <-
    frequencyDataFrameToVector(
        dataFrame,
        "chestsize" )

hist( chestSizeVector )

Output:

Standardized variable[edit]

Any variable () in a data set can be converted into a standardized variable (). The standardized variable is also known as a z-score.[51] To calculate the z-score, subtract the mean and divide by the standard deviation.[52]

Let = a set of data points.
Let = the mean of the data set.
Let = the standard deviation of the data set.
Let = the element in the set.
Let = the z-score of the element in the set.

R function to convert a measurement to a z-score:

# Filename: zScore.R

zScore <- function( measurement, mean, standardDeviation )
{
    ( measurement - mean ) / standardDeviation
}

R program to convert a chest size measurement of 38 to a z-score:

source( "zScore.R" )

print( zScore( 38, 39.84892, 2.073386 ) )

Output:

[1] -0.8917394

R program to convert a chest size measurement of 42 to a z-score:

source( "zScore.R" )

print( zScore( 42, 39.84892, 2.073386 ) )

Output:

[1] 1.037472
Standardized data set[edit]

A standardized data set is a data set in which each member of an input data set was run through the zScore function.

R function to convert a numeric vector into a z-score vector:

# Filename: zScoreVector.R

source( "zScore.R" )

zScoreVector <- function( vector )
{
    zScoreVector = NA

    for ( i in 1:length( vector ) )
    {
        zScoreVector[ i ] <-
            zScore(
                vector[ i ],
                mean( vector ),
                sd( vector ) )
    }

    return( zScoreVector )
}
Standardized chest size data set[edit]

R program to standardize the chest size data set:

source( "frequencyDataFrameToVector.R" )
source( "zScoreVector.R" )

dataFrame <- read.csv( "chestsize.csv" )

chestSizeVector <-
    frequencyDataFrameToVector(
        dataFrame,
        dataColumnName = "chestsize" )

zScoreVector <-
    zScoreVector(
        chestSizeVector )

message( "Head:" )
head( zScoreVector )

message( "\nTail:" )
tail( zScoreVector )

message( "\nCount:" )
length( zScoreVector )

message( "\nMean:" )
round( mean( zScoreVector ) )

message( "\nStandard deviation:" )
sd( zScoreVector )

hist( zScoreVector )

Output:

Head:
[1] -3.303253 -3.303253 -3.303253 -2.820950 -2.820950 -2.820950

Tail:
[1] 2.966684 2.966684 3.448987 3.448987 3.448987 3.931290

Count:
[1] 5732

Mean:
[1] 0

Standard deviation:
[1] 1
Standard normal curve[edit]
The standard normal curve is centered at 0 with most of the area between -3 and 3.

A histogram of a normally distributed data set that is converted to its standardized data set also resembles a bell-shaped curve. The curve is called the standard normal curve or the z-curve. The four basic properties of the z-curve are:[53]

  1. The total area under the curve is 1.
  2. The curve extends indefinitely to the left and right. It never touches the horizontal axis.
  3. The curve is symmetric and centered at 0.
  4. Almost all of the area under the curve lies between -3 and 3.
Area under the standard normal curve[edit]

The probability that a future measurement will be a value between a designated range is equal to the area under the standard normal curve of the designated range's two z-scores.[54]

For example, suppose the Scottish militia's quartermaster wanted to stock up on uniforms. What is the probability that the next recruit will need a size between 38 and 42?

R program:

library( tigerstats )
source( "frequencyDataFrameToVector.R" )
source( "zScore.R" )

dataFrame <- read.csv( "chestsize.csv" )

chestSizeVector <-
    frequencyDataFrameToVector(
        dataFrame,
        dataColumnName = "chestsize" )

zScore38 <-
    zScore( 38, mean( chestSizeVector ), sd( chestSizeVector ) )

zScore42 <-
    zScore( 42, mean( chestSizeVector ), sd( chestSizeVector ) )

areaLeft38 <- tigerstats::pnormGC( zScore38 )
areaLeft42 <- tigerstats::pnormGC( zScore42 )

areaBetween <- areaLeft42 - areaLeft38

message( "Probability:" )
print( areaBetween )

Output:

Probability:
[1] 0.6639757

The pnormGC() function can compute the probability between a range without first calculating the z-score.

R program:

library( tigerstats )
source( "frequencyDataFrameToVector.R" )

dataFrame <- read.csv( "chestsize.csv" )

chestSizeVector <-
    frequencyDataFrameToVector(
        dataFrame,
        dataColumnName = "chestsize" )

areaBetween <-
    tigerstats::pnormGC(
        c( 38, 42 ),
        mean = mean( chestSizeVector ),
        sd = sd( chestSizeVector ),
        region = "between",
        graph = TRUE )

message( "Probability:" )
print( areaBetween )

Output:

Probability:
[1] 0.6639757

XMLHttpRequest[edit]

XMLHttpRequest is a JavaScript class containing methods to asynchronously transmit HTTP requests from a web browser to a web server.[55] The methods allow a browser-based application to make a fine-grained server call and store the result in the XMLHttpRequest responseText attribute.[56] The XMLHttpRequest class is a component of Ajax programming. Without Ajax, the "Submit" button will send to the server an entire HTML form. The server will respond by returning an entire HTML page to the browser.[56]

Constructor[edit]

Generating an asynchronous request to the web server requires first to instantiate (allocate the memory of) the XMLHttpRequest object. The allocated memory is assigned to a variable. The programming statement in JavaScript to instantiate a new object is new.[57] The new statement is followed by the constructor function of the object. The custom for object-oriented language developers is to invoke the constructor function using same name as the class name.[58] In this case, the class name is XMLHttpRequest. To instantiate a new XMLHttpRequest and assign it to the variable named request:

var request = new XMLHttpRequest();[59]

The open method[edit]

The open method prepares the XMLHttpRequest.[60] It can accept up to five parameters, but requires only the first two.

var request = new XMLHttpRequest();

request.open( RequestMethod, SubmitURL, AsynchronousBoolean, UserName, Password );

  • RequestMethod: The HTTP request method may be GET for smaller quantities of data. Among the other request methods available, POST will handle substantial quantities of data.[61] After the return string is received, then send the DELETE request method to .open() to free the XMLHttpRequest memory.[62] If DELETE is sent, then the SubmitURL parameter may be null.
* request.open( "DELETE", null );
  • SubmitURL: The SubmitURL is a URL containing the execution filename and any parameters that get submitted to the web server. If the URL contains the host name, it must be the web server that sent the HTML document. Ajax supports the same-origin policy.[63]
  • AsynchronousBoolean: If supplied, it should be set to true. If set to false, then the browser will wait until the return string is received. Programmers are discouraged to set AsynchronousBoolean to false, and browsers may experience an exception error.[64]
  • UserName: If supplied, it will help authenticate the user.
  • Password: If supplied, it will help authenticate the user.

The setRequestHeader method[edit]

If the request method of POST is invoked, then the additional step of sending the media type of Content-Type: application/x-www-form-urlencoded is required.[65] The setRequestHeader method allows the program to send this or other HTTP headers to the web server. Its usage is setRequestHeader( HeaderField, HeaderValue ).[60] To enable the POST request method:

* request.setRequestHeader( "Content-Type", "application/x-www-form-urlencoded" );

The send method[edit]

If the request method of POST is invoked, then the web server expects the form data to be read from the standard input stream.[66] To send the form data to the web server, execute request.send( FormData ), where FormData is a text string. If the request method of GET is invoked, then the web server expects only the default headers.[67] To send the default headers, execute request.send( null ).[d]

The onreadystatechange event listener[edit]

onreadystatechange is a callback method that is periodically executed throughout the Ajax lifecycle.[68] To set a callback method named ReadyStateMethod(), the syntax is request.onreadystatechange = ReadyStateMethod.[e] For convenience, the syntax allows for an anonymous method to be defined.[68] To define an anonymous callback method:

var request = new XMLHttpRequest();

request.onreadystatechange = function()
{
// code omitted
}

The XMLHttpRequest lifecycle progresses through several stages – from 0 to 4. Stage 0 is before the open() method is invoked, and stage 4 is when the text string has arrived.[67] To monitor the lifecycle, XMLHttpRequest has available the readyState attribute. Stages 1-3 are ambiguous and interpretations vary across browsers.[60] Nonetheless, one interpretation is:[60]

  • Stage 0: Uninitialized
  • Stage 1: Loading
  • Stage 2: Loaded
  • Stage 3: Interactive
  • Stage 4: Completed

When readyState reaches 4, then the text string has arrived and is set in the responseText attribute.

var request = new XMLHttpRequest();

request.onreadystatechange = function()
{
    if ( request.readyState == 4 )
    {
        // request.responseText is set
    }
}

Linux examples[edit]

Upon request, the browser will execute a JavaScript function to transmit a request for the web server to execute a computer program. The computer program may be the PHP interpreter, another interpreter, or a compiled executable. In any case, the JavaScript function expects a text string to be transmitted back and stored in the responseText attribute.[67]

To create an example JavaScript function:

  • cd /var/www/html
  • Edit a file named ajax_submit.js:
function ajax_submit( destination_division, submit_url, person_name )
{
    var request = new XMLHttpRequest();
    var completed_state = 4;

    submit_url = submit_url + "?person_name=" + person_name;
    request.open( "GET", submit_url );
    request.send( null );

    request.onreadystatechange = function()
    {
        if ( request.readyState == completed_state )
        {
            document.
                getElementById( destination_division ).
                innerHTML =
                    request.responseText;

            request.open( "DELETE", null );
        }
    }
}

PHP example[edit]

PHP is a scripting language designed specifically to interface with HTML.[69] Because the PHP engine is an interpreter – interpreting program statements as they are read – there are programming limitations[f] and performance costs.[g] Nonetheless, its simplicity may place the XMLHttpRequest set of files in the same working directory – probably /var/www/html.

PHP server component[edit]

The server component of a PHP XMLHttpRequest is a file located on the server that does not get transmitted to the browser. Instead, the PHP interpreter will open this file and read in its PHP instructions. The XMLHttpRequest protocol requires an instruction to output a text string.

  • cd /var/www/html
  • Edit a file named ajax_server.php:
<?php
    $person_name = $_GET[ 'person_name' ];
    echo "<p>Hello $person_name";
?>

PHP browser component[edit]

The browser component of a PHP XMLHttpRequest is a file that gets transmitted to the browser. The browser will open this file and read in its HTML instructions.

  • cd /var/www/html
  • Edit a file named ajax_php.html:
<!doctype html>
<html>
<head>
    <title>Hello World</title>
    <script type=text/javascript src=ajax_submit.js></script>
</head>
<body>
    <p>What is your name?
    <input type=text id="person_name" size=10>

    <div id=destination_division></div>

    <button
        onclick="ajax_submit(
            'destination_division',
            'ajax_server.php',
            document.getElementById( 'person_name' ).value )">
        Submit
    </button>
</body>
</html>
  1. Point your browser to http://localhost/ajax_php.html
  2. Type in your name.
  3. Press Submit

CGI example[edit]

The Common Gateway Interface (CGI) process allows a browser to request the web server to execute a compiled computer program.[h]

CGI server component[edit]

The server component of a CGI XMLHttpRequest is an executable file located on the server. The operating system will open this file and read in its machine instructions. The XMLHttpRequest protocol requires an instruction to output a text string.

Compiled programs have two files: the source code and a corresponding executable.

  • cd /usr/lib/cgi-bin
  • Edit a file named ajax_server.c:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

void main( void )
{
    char *query_string;
    char *person_name;

    query_string = getenv( "QUERY_STRING" );

    /* Skip "person_name=" */
    person_name = query_string + strlen( "person_name=" );

    /* CGI requires the first line to output: */
    printf( "Content-type: text/html\n" );

    /* CGI requires the second line to output: */
    printf( "\n" );

    printf( "<p>Hello %s\n", person_name );
}
  • Compile the source code to create the executable:

cc ajax_server.c -o ajax_server

CGI browser component[edit]

The CGI browser component is the same as the PHP browser component, except for a slight change in the submit_url. The syntax to tell the web server to execute an executable is /cgi-bin/ followed by the filename. For security, the executable must reside in a chroot jail. In this case, the jail is the directory /usr/lib/cgi-bin/.[i]

  • cd /var/www/html
  • Edit a file named ajax_cgi.html:
<!doctype html>
<html>
<head>
    <title>Hello World</title>
    <script type=text/javascript src=ajax_submit.js></script>
</head>
<body>
    <p>What is your name?
    <input type=text id="person_name" size=10>

    <div id=destination_division></div>

    <button
        onclick="ajax_submit(
            'destination_division',
            '/cgi-bin/ajax_server',
            document.getElementById( 'person_name' ).value )">
        Submit
    </button>
</body>
</html>
  1. Point your browser to http://localhost/ajax_cgi.html
  2. Type in your name.
  3. Press Submit

Notes[edit]

  1. ^ The format of the regression equation differs from the algebraic format of . The y-intercept is placed first, and all of the independent variables are appended to the right.
  2. ^ This may display to standard error a warning message that the summary may be unreliable. Nonetheless, the output of 1 is correct.
  3. ^ To retrieve the value of an array of length one, the index subscript is optional.
  4. ^ The null placeholder is currently in retirement but recommended.
  5. ^ For safety, this assignment should follow the execution of request.open().
  6. ^ Whereas PHP is a rich language and interfaces well with certain databases, it supports only a subset of container types and lacks declarative language constructs.
  7. ^ An interpreter executes each programming statement; however, a compiled program has each machine instruction ready for the CPU.
  8. ^ The web server may be configured to execute interpreted programs, also.[70]
  9. ^ The web server may be configured to add other executable directories.[70]

References[edit]

  1. ^ a b c Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 90. ISBN 0-201-71058-7.
  2. ^ a b Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 105. ISBN 0-201-71058-7.
  3. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 155. ISBN 0-201-71058-7.
  4. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 146. ISBN 0-201-71058-7.
  5. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 148. ISBN 0-201-71058-7.
  6. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 156. ISBN 0-201-71058-7.
  7. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 157. ISBN 0-201-71058-7.
  8. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 170. ISBN 0-201-71058-7.
  9. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 175. ISBN 0-201-71058-7. The coefficient of determination always lies between 0 and 1 ...
  10. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 175. ISBN 0-201-71058-7.
  11. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 4. ISBN 978-1-449-35901-0.
  12. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 20. ISBN 978-1-449-35901-0. An R script is just a plain text file that you save R code in.
  13. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 7. ISBN 978-1-449-35901-0.
  14. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 8. ISBN 978-1-449-35901-0.
  15. ^ a b c Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 77. ISBN 978-1-449-35901-0.
  16. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 37. ISBN 978-1-449-35901-0.
  17. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 38. ISBN 978-1-449-35901-0.
  18. ^ a b Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 10. ISBN 978-1-449-35901-0.
  19. ^ a b c Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 39. ISBN 978-1-449-35901-0.
  20. ^ a b c Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 42. ISBN 978-1-449-35901-0.
  21. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 81. ISBN 978-1-449-35901-0.
  22. ^ a b Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 41. ISBN 978-1-449-35901-0.
  23. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 49. ISBN 978-1-449-35901-0.
  24. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 50. ISBN 978-1-449-35901-0.
  25. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 25. ISBN 0-201-71058-7.
  26. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 23. ISBN 0-201-71058-7.
  27. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 24. ISBN 0-201-71058-7.
  28. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 55. ISBN 978-1-449-35901-0. Data frames are the two-dimensional version of a list.
  29. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 55. ISBN 978-1-449-35901-0. They are far and away the most useful storage structure for data analysis[.]
  30. ^ a b Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 173. ISBN 978-1-449-35901-0.
  31. ^ a b Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 185. ISBN 978-1-449-35901-0.
  32. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 165. ISBN 978-1-449-35901-0.
  33. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 69. ISBN 978-1-449-35901-0.
  34. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 80. ISBN 978-1-449-35901-0.
  35. ^ a b Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 16. ISBN 978-1-449-35901-0.
  36. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 29. ISBN 978-1-449-35901-0.
  37. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 13. ISBN 978-1-449-35901-0.
  38. ^ a b Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 14. ISBN 978-1-449-35901-0.
  39. ^ Schach, Stephen R. (1990). Software Engineering. Aksen Associates Incorporated Publishers. p. 231. ISBN 0-256-08515-3.
  40. ^ Downing, Douglas; Clark, Jeffrey (2003). Business Statistics. Barron's. p. 163. ISBN 0-7641-1983-4.
  41. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 95. ISBN 0-201-71058-7.
  42. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 314. ISBN 0-201-71058-7.
  43. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 17. ISBN 978-1-449-35901-0.
  44. ^ R Core Team. "Print Values". R Documentation. R Foundation for Statistical Computing. Retrieved 30 May 2016.
  45. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 147. ISBN 978-1-449-35901-0. R calls print each time it displays a result in your console window.
  46. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 17. ISBN 978-1-449-35901-0. R will execute all of the code in the body and then return the result of the last line of code.
  47. ^ Grolemund, Garrett (2014). Hands-On Programming with R. O'Reilly. p. 82. ISBN 978-1-449-35901-0. Be careful not to confuse = with ==. = does the same thing as <-.
  48. ^ a b Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 256. ISBN 0-201-71058-7.
  49. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 257. ISBN 0-201-71058-7.
  50. ^ a b c Wickham, Hadley; Cetinkaya-Rundel, Mine; Grolemund, Garrett (2023). R for Data Science, Second Edition. O'Reilly. p. xiii. ISBN 978-1-492-09740-2.
  51. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 133. ISBN 0-201-71058-7.
  52. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 134. ISBN 0-201-71058-7.
  53. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 266. ISBN 0-201-71058-7.
  54. ^ Weiss, Neil A. (2002). Elementary Statistics, Fifth Edition. Addison-Wesley. p. 265. ISBN 0-201-71058-7.
  55. ^ Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 92. ISBN 978-0-596-10180-0. Javascript lacks a portable mechanism for general network communication[.] ... But thanks to the XMLHttpRequest object, ... Javascript code can make HTTP calls back to its originating server[.]
  56. ^ a b Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 92. ISBN 978-0-596-10180-0.
  57. ^ Flanagan, David (1998). JavaScript, The Definitive Guide. O'Reilly and Associates. p. 82. ISBN 1-56592-392-8.
  58. ^ Welling, Luke; Thomson, Laura (2005). PHP and MySQL Web Development. Sams Publishing. p. 162. ISBN 0-672-32672-8.
  59. ^ "XMLHttpRequest Standard; The constructor". Retrieved 2023-04-10.
  60. ^ a b c d Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 100. ISBN 978-0-596-10180-0.
  61. ^ Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 96. ISBN 978-0-596-10180-0. POST, for example, is suited to calls that affect server state or upload substantial quantities of data.
  62. ^ "HTTP Documentation". June 2022. Retrieved 2023-04-12.
  63. ^ Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 98. ISBN 978-0-596-10180-0.
  64. ^ "XMLHttpRequest Standard; The open method". Retrieved 2023-04-12.
  65. ^ Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 97. ISBN 978-0-596-10180-0.
  66. ^ Flanagan, David (1998). JavaScript, The Definitive Guide. O'Reilly and Associates. p. 511. ISBN 1-56592-392-8.
  67. ^ a b c Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 26. ISBN 978-0-596-10180-0.
  68. ^ a b Mahemoff, Michael (2006). Ajax Design Patterns. O'Reilly. p. 25. ISBN 978-0-596-10180-0.
  69. ^ Welling, Luke; Thomson, Laura (2005). PHP and MySQL Web Development. Sams Publishing. p. 2. ISBN 0-672-32672-8. PHP is a server-side scripting language designed specifically for the Web.
  70. ^ a b "Apache Tutorial". Retrieved 2023-04-10.