diff options
author | Bhanukiran | 2010-11-07 00:04:06 +0530 |
---|---|---|
committer | Bhanukiran | 2010-11-07 00:04:06 +0530 |
commit | ed91dd94e5f4cbdab51e8354424c10340b5b7ecc (patch) | |
tree | 7219f03f96c7c574f628d28ae3f2f81102746844 /loading-data-from-files | |
parent | e4190a104d28953fd712f797561c5d70187d194f (diff) | |
download | st-scripts-ed91dd94e5f4cbdab51e8354424c10340b5b7ecc.tar.gz st-scripts-ed91dd94e5f4cbdab51e8354424c10340b5b7ecc.tar.bz2 st-scripts-ed91dd94e5f4cbdab51e8354424c10340b5b7ecc.zip |
checked the language for `loading data from files`
and check list done by Anand.
Diffstat (limited to 'loading-data-from-files')
-rw-r--r-- | loading-data-from-files/script.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/loading-data-from-files/script.rst b/loading-data-from-files/script.rst index ff4ce19..421afac 100644 --- a/loading-data-from-files/script.rst +++ b/loading-data-from-files/script.rst @@ -14,9 +14,11 @@ .. 1. getting started with ``ipython`` +.. #[Anand: author and internal reviewer not mentioned] .. Author : Internal Reviewer : External Reviewer : + Language Reviewer : Bhanukiran Checklist OK? : <put date stamp here, if OK> [2010-10-05] Script @@ -96,7 +98,7 @@ equal number of rows. .. cat /home/fossee/pendulum.txt .. #[Nishanth]: The first column is L values and second is T values - from a simle pelculum experiment. + from a simple pendulum experiment. Since you are using the variable names later in the script. Not necessary but can be included also. @@ -133,7 +135,7 @@ Let us now, print the variables L and T, to see what they contain. Notice, that L and T now contain the first and second columns of data from the data file, ``pendulum.txt``, and they are both simple -sequences. ``unpack=True`` has given us the two columns in to two +sequences. ``unpack=True`` has given us the two columns into two separate sequences instead of one complex sequence. {{{ show the slide with loadtxt --- other features }}} |