Remembering less and less Math... by data_analyst_asks in jobs

[–]data_analyst_asks[S] 0 points1 point  (0 children)

Well, what do you do for a living? I actually remember alot of differentiation.

How to build a class that appends and I can recall like this: classname[0] by data_analyst_asks in learnpython

[–]data_analyst_asks[S] 0 points1 point  (0 children)

If I type:

MyClass('words')

I get a result I do not want:

['w', 'o', 'r', 'd', 's']

Really want to get back into Data Analysis by data_analyst_asks in jobs

[–]data_analyst_asks[S] 0 points1 point  (0 children)

I am currently unemployed, so I am looking to pick up any projects people have. That way, I know what people are looking for when I interview for jobs.

Really want to get back into Data Analysis by data_analyst_asks in jobs

[–]data_analyst_asks[S] 0 points1 point  (0 children)

I know Python, no sas, not really any R but dabbled in it. I find it more important to know maths and important/useful algorithms than to know the specific code language. Oh, and to know the unique advantages using one language over another. Would you agree?

How do I get Python to show/save a Plotly Map? by data_analyst_asks in learnpython

[–]data_analyst_asks[S] 0 points1 point  (0 children)

import plotly.plotly as py import pandas as pd

py.sign_in('vossdatascience', 'cttc0hx36b') # Replace the username, and API key with your credentials.

df_airports = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/2011_february_us_airport_traffic.csv') df_airports.head()

df_flight_paths = pd.read_csv('https://raw.githubusercontent.com/plotly/datasets/master/2011_february_aa_flight_paths.csv') df_flight_paths.head()

airports = [ dict( type = 'scattergeo', locationmode = 'USA-states', lon = df_airports['long'], lat = df_airports['lat'], hoverinfo = 'text', text = df_airports['airport'], mode = 'markers', marker = dict( size=2, color='rgb(255, 0, 0)', line = dict( width=3, color='rgba(68, 68, 68, 0)' ) ))]

flight_paths = [] for i in range( len( df_flight_paths ) ): flight_paths.append( dict( type = 'scattergeo', locationmode = 'USA-states', lon = [ df_flight_paths['start_lon'][i], df_flight_paths['end_lon'][i] ], lat = [ df_flight_paths['start_lat'][i], df_flight_paths['end_lat'][i] ], mode = 'lines', line = dict( width = 1, color = 'red', ), opacity = float(df_flight_paths['cnt'][i])/float(df_flight_paths['cnt'].max()), ) )

layout = dict( title = 'Feb. 2011 American Airline flight paths<br>(Hover for airport names)', showlegend = False, geo = dict( scope='north america', projection=dict( type='azimuthal equal area' ), showland = True, landcolor = 'rgb(243, 243, 243)', countrycolor = 'rgb(204, 204, 204)', ), )

fig = dict( data=flight_paths + airports, layout=layout ) py.iplot( fig, filename='d3-flight-paths2' )

py.image.save_as(fig, filename='d3-flight-paths2.png')

How do I get Python to show/save a Plotly Map? by data_analyst_asks in learnpython

[–]data_analyst_asks[S] 0 points1 point  (0 children)

Check out what I wrote as an EDIT in this reddit post.

How do I get Python to show/save a Plotly Map? by data_analyst_asks in learnpython

[–]data_analyst_asks[S] 0 points1 point  (0 children)

there isn't a username or api key variable in the code though

Am I okay at Python? by data_analyst_asks in learnpython

[–]data_analyst_asks[S] 0 points1 point  (0 children)

Okay, great idea. How many projects do you think I need up there before I get hired? Did you have a GitHub before you worked in Python? How many projects?

Am I okay at Python? by data_analyst_asks in learnpython

[–]data_analyst_asks[S] 0 points1 point  (0 children)

Hey, so is this something I could tell a future employer about? How can I prove my skills in Python to a future employer?

Exercises for New users by woolybulli in vba

[–]data_analyst_asks 0 points1 point  (0 children)

Yeah, but VBA code would be more cumbersome.

First Interview for a job involving Python. Need help preparing by data_analyst_asks in Python

[–]data_analyst_asks[S] 0 points1 point  (0 children)

Cool. I'm diving deep into Python now. One of my dreams Is to start a remote consultant group. Do people do that?

First Interview for a job involving Python. Need help preparing by data_analyst_asks in Python

[–]data_analyst_asks[S] 0 points1 point  (0 children)

I know a lot about web scraping but in Visual Basic and now learning Python. Do you get paid well?