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
3612ba1b
Commit
3612ba1b
authored
Jun 13, 2014
by
panos
Committed by
Jérome Perrin
Jun 17, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New object inserted to import data from CSV files
parent
250171ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
dream/KnowledgeExtraction/ImportCSVdata.py
dream/KnowledgeExtraction/ImportCSVdata.py
+46
-0
No files found.
dream/KnowledgeExtraction/ImportCSVdata.py
0 → 100644
View file @
3612ba1b
'''
Created on 13 Jun 2014
@author: Panos
'''
# ===========================================================================
# 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/>.
# ===========================================================================
import
csv
#The Import_CSV object
class
Import_CSV
:
#This object reads data from a CSV document
def
Input_data
(
self
,
fileName
):
#This method takes as an argument the Name of the CSV file
#Opens the CSV for the reader to use
reader
=
csv
.
reader
(
open
(
fileName
,
"rb"
),
delimiter
=
','
)
headers
=
[]
#Create a new list to insert the labels of the data sets
csvInput
=
list
(
reader
)
for
element
in
csvInput
[
0
]:
headers
.
append
(
element
)
#Insert the labels in the list headers
dictData
=
{}
#Create a dictionary to input the CSV data
for
header
in
headers
:
dictData
[
header
]
=
[]
#Insert as keys in the dictionary the labels of the data sets
for
row
in
csvInput
:
if
row
==
csvInput
[
0
]:
#Input in the dictionary the data apart from the first row (headers)
continue
else
:
for
j
in
range
(
len
(
row
)):
dictData
[
headers
[
j
]].
append
(
row
[
j
])
return
dictData
\ 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