Python Forum
Trying to Tabulate Information from an Aircraft Website Link(s)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Trying to Tabulate Information from an Aircraft Website Link(s)
#2
So it's still Aircrafts eddy Cool
And i guess still little Python.

You are mixing up some stuff here,drop tabulate and do all in pandas.
You pretty much need Jupyter Notebook,this make display of table and testing a whole lot simpler.

I have done some testing look at this notebook
See that display of table is good in notebook.

Done some comparing,all Location that had Spitfire in program.
df = df[(df['Location'] != "") & (df['Spitfire'] == 'S')]
So in September had Boston two display of Spitfire.
df[(df['Location'] == 'Boston') & (df['Spitfire'] == 'S')]
Output:
Location Spitfire 57 Boston S 76 Boston S
Reply


Messages In This Thread
RE: Trying to Tabulate Information from an Aircraft Website Link(s) - by snippsat - Jun-16-2019, 02:39 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to insert Dashed Lines in between Rows of a tabulate output Mudassir1987 0 598 Sep-27-2023, 10:09 AM
Last Post: Mudassir1987
  pandas, tabulate, and alignment menator01 3 7,607 Feb-05-2022, 07:04 AM
Last Post: menator01
  display the result of Dataframe in tabulate format alex80 0 1,452 Sep-09-2020, 02:22 PM
Last Post: alex80
  How to tabulate correctly repeated blocks? Xiesxes 4 3,075 Mar-21-2020, 04:57 PM
Last Post: Xiesxes
  Obtain Geometric Information and name from a map-design website fyec 2 2,544 Aug-08-2018, 05:11 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020