very high-level IO functions?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • York

    #1

    very high-level IO functions?

    Hi,

    R language has very high-level IO functions, its read.table can read a
    total .csv file and recogonize the types of each column. write.table can
    do the reverse.

    R's MySQL interface has high-level functions, too, e.g. dbWriteTable can
    automatically build a MySQL table and write a table of R data
    into it.

    Is there any python packages do similar things?


    -York
  • Caleb Hattingh

    #2
    Re: very high-level IO functions?

    York

    Short answer: yes

    We use python and R at work, and in general you will find python syntax a
    little cleaner for functionality they have in common. R is better for
    some of the more hard-wired stats stuff, though.

    On Mon, 19 Sep 2005 20:04:37 +0200, York <yorklee70@gmai l.com> wrote:
    [color=blue]
    > Hi,
    >
    > R language has very high-level IO functions, its read.table can read a
    > total .csv file and recogonize the types of each column. write.table can
    > do the reverse.
    >
    > R's MySQL interface has high-level functions, too, e.g. dbWriteTable can
    > automatically build a MySQL table and write a table of R data
    > into it.
    >
    > Is there any python packages do similar things?
    >
    >
    > -York[/color]

    Comment

    • Larry Bates

      #3
      Re: very high-level IO functions?

      While it may "attempt" to recognize the types, it in fact cannot
      be more correct than the programmer. Example:

      data="""0X1E04 111"""

      That "looks" lile a hex and an int. But wait. What if it is
      instead two strings?

      In Python you can easily write a class with a interator that can
      read the data from the file/table and return the PROPER data types
      as lists, tuples, or dictionaries that are easy to manipulate.

      -Larry Bates

      York wrote:[color=blue]
      > Hi,
      >
      > R language has very high-level IO functions, its read.table can read a
      > total .csv file and recogonize the types of each column. write.table can
      > do the reverse.
      >
      > R's MySQL interface has high-level functions, too, e.g. dbWriteTable can
      > automatically build a MySQL table and write a table of R data into
      > it.
      >
      > Is there any python packages do similar things?
      >
      >
      > -York[/color]

      Comment

      • York

        #4
        Re: very high-level IO functions?

        Caleb Hattingh wrote:[color=blue]
        > York
        >
        > Short answer: yes
        >[/color]

        Brilliant! and what are they?
        [color=blue]
        > We use python and R at work, and in general you will find python syntax
        > a little cleaner for functionality they have in common. R is better
        > for some of the more hard-wired stats stuff, though.[/color]

        I love python. However, as a biologist, I like some high-levels
        functions in R. I don't want to spend my time on parse a data file. Then
        in my python script, I call R to read data file and write them into an
        MySQL table. If python can do this easily, I don't need R at all.

        Cheers,

        -York

        [color=blue]
        >
        > On Mon, 19 Sep 2005 20:04:37 +0200, York <yorklee70@gmai l.com> wrote:
        >[color=green]
        >> Hi,
        >>
        >> R language has very high-level IO functions, its read.table can read
        >> a total .csv file and recogonize the types of each column.
        >> write.table can do the reverse.
        >>
        >> R's MySQL interface has high-level functions, too, e.g. dbWriteTable
        >> can automatically build a MySQL table and write a table of R
        >> data into it.
        >>
        >> Is there any python packages do similar things?
        >>
        >>
        >> -York[/color]
        >
        >[/color]

        Comment

        • York

          #5
          Re: very high-level IO functions?

          Your are right, a program cannot be smarter than its programmer. However
          I need a program to parse any table-format data files offered by user. R
          offer such a function, I hope python such a function too.

          -York

          [color=blue]
          > While it may "attempt" to recognize the types, it in fact cannot
          > be more correct than the programmer. Example:
          >
          > data="""0X1E04 111"""
          >
          > That "looks" lile a hex and an int. But wait. What if it is
          > instead two strings?
          >
          > In Python you can easily write a class with a interator that can
          > read the data from the file/table and return the PROPER data types
          > as lists, tuples, or dictionaries that are easy to manipulate.
          >
          > -Larry Bates
          >
          > York wrote:
          >[color=green]
          >>Hi,
          >>
          >>R language has very high-level IO functions, its read.table can read a
          >>total .csv file and recogonize the types of each column. write.table can
          >>do the reverse.
          >>
          >>R's MySQL interface has high-level functions, too, e.g. dbWriteTable can
          >> automatically build a MySQL table and write a table of R data into
          >>it.
          >>
          >>Is there any python packages do similar things?
          >>
          >>
          >>-York[/color][/color]

          Comment

          • Bruno Desthuilliers

            #6
            Re: very high-level IO functions?

            York a écrit :
            (snip)
            [color=blue]
            > I love python. However, as a biologist, I like some high-levels
            > functions in R. I don't want to spend my time on parse a data file.[/color]

            [color=blue]
            > Then
            > in my python script, I call R to read data file and write them into an
            > MySQL table. If python can do this easily, I don't need R at all.[/color]

            So you don't need R at all.


            Comment

            • Larry Bates

              #7
              Re: very high-level IO functions?

              It's so easy (using csv module), no need to build in.
              You can wrap in a class if you want to make even easier.
              Same can be done for tables from SQL database.

              import csv
              fp=open(r'C:\te st.txt', 'r')
              #
              # test.txt contains:
              #
              # "record","value 1","value2"
              # "1","2","3"
              # "2","4","5"
              # "3","6","7"
              table=csv.DictR eader(fp)
              for record in table:
              #
              # Record is a dictionary with keys as fieldnames
              # and values of the data in each record
              #
              print "record #=%s, value1=%s, value2=%s" % \
              (record['record'],record['value1'],record['value2'])

              fp.close()

              -Larry Bates


              York wrote:[color=blue]
              > Your are right, a program cannot be smarter than its programmer. However
              > I need a program to parse any table-format data files offered by user. R
              > offer such a function, I hope python such a function too.
              >
              > -York
              >
              >[color=green]
              >> While it may "attempt" to recognize the types, it in fact cannot
              >> be more correct than the programmer. Example:
              >>
              >> data="""0X1E04 111"""
              >>
              >> That "looks" lile a hex and an int. But wait. What if it is
              >> instead two strings?
              >>
              >> In Python you can easily write a class with a interator that can
              >> read the data from the file/table and return the PROPER data types
              >> as lists, tuples, or dictionaries that are easy to manipulate.
              >>
              >> -Larry Bates
              >>
              >> York wrote:
              >>[color=darkred]
              >>> Hi,
              >>>
              >>> R language has very high-level IO functions, its read.table can read a
              >>> total .csv file and recogonize the types of each column. write.table can
              >>> do the reverse.
              >>>
              >>> R's MySQL interface has high-level functions, too, e.g. dbWriteTable can
              >>> automatically build a MySQL table and write a table of R data into
              >>> it.
              >>>
              >>> Is there any python packages do similar things?
              >>>
              >>>
              >>> -York[/color][/color][/color]

              Comment

              • Tom Anderson

                #8
                Re: very high-level IO functions?

                On Mon, 19 Sep 2005, Bruno Desthuilliers wrote:
                [color=blue]
                > York a écrit :
                > (snip)
                >[color=green]
                >> I love python. However, as a biologist, I like some high-levels
                >> functions in R. I don't want to spend my time on parse a data file.[/color]
                >
                > http://www.python.org/doc/current/lib/module-csv.html
                >[color=green]
                >> Then in my python script, I call R to read data file and write them
                >> into an MySQL table. If python can do this easily, I don't need R at
                >> all.[/color]
                >
                > So you don't need R at all.[/color]

                Did you even read the OP's post? Specifically, this bit:

                R language has very high-level IO functions, its read.table can read a
                total .csv file and recogonize the types of each column.
                ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^

                Python's csv module gives you tuples of strings; it makes no effort to
                recognise the types of the data. AFAIK, python doesn't have any IO
                facilities like this.

                Larry's point that automagical type detection is risky because it can make
                mistakes is a good one, but that doesn't mean that magic is useless - on
                the contrary, for the majority of cases, it works fine, and is extremely
                convenient.

                The good news is that it's reasonably easy to write such a function: you
                just need a function 'type_convert' which takes a string and returns an
                object of the right type; then you can do:

                import csv

                def read_table(f):
                for row in csv.reader(f):
                yield map(type_conver t, row)

                This is a very, very rough cut - it doesn't do comment stripping, skipping
                blank lines, dealing with the presence of a header line or the use of
                different separators, etc, but all that's pretty easy to add. Also, note
                that this returns an iterator rather than a list; use list(read_table (f))
                if you want an actual list, or change the implementation of the function.

                type_convert is itself fairly simple:

                def _bool(s): # helper method for booleans
                s = s.lower()
                if (s == "true"): return True
                elif (s == "false"): return False
                else: raise ValueError, s

                types = (int, float, complex, _bool, str)

                def type_convert(s) :
                for type in types:
                try:
                return type(s)
                except ValueError:
                pass
                raise ValueError, s

                This whole thing isn't quite as sophisticated as R's table.convert; R
                reads the whole table in, then tries to find a type for each column which
                will fit all the values in that column, whereas i do each cell
                individually. Again, it wouldn't be too hard to do this the other way
                round.

                Anyway, hope this helps. Bear in mind that there are python bindings for
                the R engine, so you could just use R's version of read.table in python.

                tom

                --
                Don't trust the laws of men. Trust the laws of mathematics.

                Comment

                • York

                  #9
                  Re: very high-level IO functions?

                  Thank you, Tom.


                  -York


                  Tom Anderson wrote:[color=blue]
                  > On Mon, 19 Sep 2005, Bruno Desthuilliers wrote:
                  >[color=green]
                  >> York a écrit :
                  >> (snip)
                  >>[color=darkred]
                  >>> I love python. However, as a biologist, I like some high-levels
                  >>> functions in R. I don't want to spend my time on parse a data file.[/color]
                  >>
                  >>
                  >> http://www.python.org/doc/current/lib/module-csv.html
                  >>[color=darkred]
                  >>> Then in my python script, I call R to read data file and write them
                  >>> into an MySQL table. If python can do this easily, I don't need R at
                  >>> all.[/color]
                  >>
                  >>
                  >> So you don't need R at all.[/color]
                  >
                  >
                  > Did you even read the OP's post? Specifically, this bit:
                  >
                  > R language has very high-level IO functions, its read.table can read a
                  > total .csv file and recogonize the types of each column.
                  > ^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^^ ^^^^^^^^^
                  >
                  > Python's csv module gives you tuples of strings; it makes no effort to
                  > recognise the types of the data. AFAIK, python doesn't have any IO
                  > facilities like this.
                  >
                  > Larry's point that automagical type detection is risky because it can
                  > make mistakes is a good one, but that doesn't mean that magic is useless
                  > - on the contrary, for the majority of cases, it works fine, and is
                  > extremely convenient.
                  >
                  > The good news is that it's reasonably easy to write such a function: you
                  > just need a function 'type_convert' which takes a string and returns an
                  > object of the right type; then you can do:
                  >
                  > import csv
                  >
                  > def read_table(f):
                  > for row in csv.reader(f):
                  > yield map(type_conver t, row)
                  >
                  > This is a very, very rough cut - it doesn't do comment stripping,
                  > skipping blank lines, dealing with the presence of a header line or the
                  > use of different separators, etc, but all that's pretty easy to add.
                  > Also, note that this returns an iterator rather than a list; use
                  > list(read_table (f)) if you want an actual list, or change the
                  > implementation of the function.
                  >
                  > type_convert is itself fairly simple:
                  >
                  > def _bool(s): # helper method for booleans
                  > s = s.lower()
                  > if (s == "true"): return True
                  > elif (s == "false"): return False
                  > else: raise ValueError, s
                  >
                  > types = (int, float, complex, _bool, str)
                  >
                  > def type_convert(s) :
                  > for type in types:
                  > try:
                  > return type(s)
                  > except ValueError:
                  > pass
                  > raise ValueError, s
                  >
                  > This whole thing isn't quite as sophisticated as R's table.convert; R
                  > reads the whole table in, then tries to find a type for each column
                  > which will fit all the values in that column, whereas i do each cell
                  > individually. Again, it wouldn't be too hard to do this the other way
                  > round.
                  >
                  > Anyway, hope this helps. Bear in mind that there are python bindings for
                  > the R engine, so you could just use R's version of read.table in python.
                  >
                  > tom
                  >[/color]

                  Comment

                  Working...