Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
ff1a2350
Commit
ff1a2350
authored
May 13, 2014
by
panos
Committed by
Jérome Perrin
Jun 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Insert a new object that conducts basic transformation in a data sample
parent
6844c7e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
0 deletions
+65
-0
dream/KnowledgeExtraction/Transformations.py
dream/KnowledgeExtraction/Transformations.py
+65
-0
No files found.
dream/KnowledgeExtraction/Transformations.py
0 → 100644
View file @
ff1a2350
# ===========================================================================
# Copyright 2013 University of Limerick
#
# This file is part of DREAM.
#
# DREAM is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# DREAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with DREAM. If not, see <http://www.gnu.org/licenses/>.
# ===========================================================================
'''
Created on 14 Nov 2013
@author: Panos
'''
import
rpy2.robjects
as
robjects
#The BasicTransformations object
class
BasicTransformations
:
# A variety of transformations are calculated in this object
def
sum
(
self
,
data
):
#calculates the sum of data sample
data
=
robjects
.
FloatVector
(
data
)
##The given list changes into float vector in order to be handled by RPy2
rsum
=
robjects
.
r
[
'sum'
]
#Call sum function-R function
return
rsum
(
data
)[
0
]
def
scale
(
self
,
data
):
#centers around the mean and scales by the standard deviation (sd)
data
=
robjects
.
FloatVector
(
data
)
rscale
=
robjects
.
r
[
'scale'
]
#Call scale - R function
return
list
(
rscale
(
data
))
def
cumsum
(
self
,
data
):
#returns the cumulative sum of data sample
data
=
robjects
.
FloatVector
(
data
)
rcumsum
=
robjects
.
r
[
'cumsum'
]
#Call cumsum - R function
return
list
(
rcumsum
(
data
))
def
cumprod
(
self
,
data
):
#returns the cumulative product of data sample
data
=
robjects
.
FloatVector
(
data
)
rcumprod
=
robjects
.
r
[
'cumprod'
]
#Call cumprod - R function
return
list
(
rcumprod
(
data
))
def
cummax
(
self
,
data
):
#returns the cumulative maximum of data sample
data
=
robjects
.
FloatVector
(
data
)
rcummax
=
robjects
.
r
[
'cummax'
]
#Call cummax - R function
return
list
(
rcummax
(
data
))
def
cummin
(
self
,
data
):
#returns the cumulative minimum of data sample
data
=
robjects
.
FloatVector
(
data
)
rcummin
=
robjects
.
r
[
'cummin'
]
#Call cummin - R function
return
list
(
rcummin
(
data
))
def
rev
(
self
,
data
):
#reverse the order of values in the data sample
data
=
robjects
.
FloatVector
(
data
)
rrev
=
robjects
.
r
[
'rev'
]
#Call rev - R function
return
list
(
rrev
(
data
))
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment