[Tutor] Create CDF using Python

2017-09-13 Thread Pareshkumar Panchal
I am a python beginner,

I have set of data in excel file. i would like to create the CDF plots &
find 40th & 70th Percentile using python with functionality of refresh
whenever the data sets update.

Thanks in Advance for your help !
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


[Tutor] How to schedule the SFTP folder sync using python

2017-10-31 Thread Pareshkumar Panchal
Hi,

can you help me about scheduling the folder sync between sftp and local
directory?

pysftp library is good or you recommend different library?

thank you
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


[Tutor] csv merge with different column title

2018-04-14 Thread Pareshkumar Panchal
Hi,

I am trying to merge two csv files with following condition.

filea.csv column( a1,a2,a3)
fileb.csv column( b1,b2,b3)

i wanted to merge if a1 & b1 reference (as the title is different but
contents are valid for comparison). also the result i need is
a1,a2,a3,b1,b2 (not b3).

i am using openpyxl,csv modules at this moment.

any help appreciated.

Thank you,
P
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


[Tutor] ImportError: No module named openpyxl.workbook

2018-05-11 Thread Pareshkumar Panchal
Hi,

I am trying to write the pandas dataframe to excel but it shows following
error:

Error:
from openpyxl.workbook import Workbook
ImportError: No module named openpyxl.workbook

I am using only pandas however it still works fine on one computer having
openpyxl already installed eventhough i am not using openpyxl in the
program while shows above error on other computer where openpyxl is not
installed.

both computers are running on the same python version.

my code below:

import pandas as pd
writer = pd.ExcelWriter('summary.xlsx')
df.to_excel(writer, index=False)
writer.save()

any help appreciated.

Thank you,
Paresh
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor