1
2# This library is free software; you can redistribute it and/or
3# modify it under the terms of the GNU Library General Public
4# License as published by the Free Software Foundation; either
5# version 2 of the License, or (at your option) any later version.
6#
7# This library is distributed in the hope that it will be useful,
8# but WITHOUT ANY WARRANTY; without even the implied warranty of
9# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10# GNU Library General Public License for more details.
11#
12# You should have received a copy of the GNU Library General
13# Public License along with this library; if not, write to the
14# Free Foundation, Inc., 59 Temple Place, Suite 330, Boston,
15# MA  02111-1307  USA
16
17# Copyrights (C)
18# for this R-port:
19#   1999 - 2008, Diethelm Wuertz, Rmetrics Foundation, GPL
20#   Diethelm Wuertz <wuertz@itp.phys.ethz.ch>
21#   www.rmetrics.org
22# for the code accessed (or partly included) from other R-ports:
23#   see R's copyright and license files
24# for the code accessed (or partly included) from contributed R-ports
25# and other sources
26#   see Rmetrics's copyright file
27
28
29################################################################################
30# FUNCTION:             SKEWNESS:
31#   skewness.default      Default method
32#   skewness.data.frame   Method for objects of class data.frame
33#   skewness.POSIXct      Method for objects of class POSIXct
34#   skewness.POSIXlt      Method for objects of class POSIXlt
35################################################################################
36
37
38test.skewness.default <-
39    function()
40{
41    NA
42
43    # Return Value:
44    return()
45}
46
47
48# ------------------------------------------------------------------------------
49
50
51test.skewness.data.frame <-
52    function()
53{
54    NA
55
56    # Return Value:
57    return()
58}
59
60
61# ------------------------------------------------------------------------------
62
63
64test.skewness.POSIXct <-
65    function()
66{
67    NA
68
69    # Return Value:
70    return()
71}
72
73
74# ------------------------------------------------------------------------------
75
76
77test.skewness.POSIXlt <-
78    function()
79{
80    NA
81
82    # Return Value:
83    return()
84}
85
86
87################################################################################
88
89