09:02:16 From David Delene To Everyone: Having trouble accessing the server. Email the host to see if they can fix. 09:11:27 From Jim Cooley To Everyone: A question when you get a chance: what resources besides this can students learn Python whether at UND or not? 09:24:13 From Raihan Quader To Everyone: I can't log in yet 09:28:57 From Christopher Scott To Everyone: I had PyCharm downloaded onto my laptop 09:29:26 From Mariia Goriacheva (Morrell) To Everyone: Spyder and PyCharm for Windows 09:40:18 From Christian Nairy To Everyone: Instructions to dowload Sypder if interested: https://docs.spyder-ide.org/current/installation.html 09:41:20 From Jim Cooley To Everyone: Spyder looks similar to RStudio, which I'm familiar with. And, you can run Python code in RStudio. So i'm going to research the pros/cons of learning Spyder versus, adapting Python in RStudio... 09:41:33 From Jim Cooley To Everyone: Thanks for showing us that Christian. 09:43:14 From Christian Nairy To Everyone: No problem! 10:06:17 From David Delene To Everyone: Let know up. 10:36:16 From David Delene To Everyone: data_europe = pd.read_csv('data/gapminder_gdp_europe.csv', index_col='country') 10:36:24 From David Delene To Everyone: Write an expression to find the Per Capita GDP of Serbia in 2007. 11:23:48 From David Delene To Everyone: first = pd.read_csv('data/gapminder_all.csv', index_col='country') second = first[first['continent'] == 'Americas'] third = second.drop('Puerto Rico') fourth = third.drop('continent', axis = 1) fourth.to_csv('result.csv') 11:39:25 From David Delene To Everyone: data_europe = pd.read_csv('data/gapminder_gdp_europe.csv', index_col='country') data_europe.____.plot(label='min') data_europe.____ plt.legend(loc='best') plt.xticks(rotation=90) 11:44:00 From David Delene To Everyone: Fill in the blanks above to plot the minimum GDP per capita over time for all the countries in Europe. Modify it again to plot the maximum GDP per capita over time for Europe. 13:12:15 From Jurie Visagie To Everyone: Is it possible to do a list of lists, e.g. a matrix? 13:28:07 From Jurie Visagie To Everyone: can you do matrix operations such as dot products? 13:28:09 From David Delene To Everyone: values = ____ values.____(1) values.____(3) values.____(5) print('first time:', values) values = values[____] print('second time:', values) 13:28:17 From David Delene To Everyone: Fill in the blanks so that the program below produces the output shown. 13:46:32 From David Delene To Everyone: What does list('some string') do? What does '-'.join(['x', 'y', 'z']) generate? 13:55:39 From Christopher Scott To Everyone: lithium 14:34:44 From David Delene To Everyone: Finished For Loops, doing Conditionals. 14:51:09 From David Delene To Everyone: pressure = 71.9 if pressure > 50.0: pressure = 25.0 elif pressure <= 50.0: pressure = 0.0 print(pressure) 15:57:35 From Raihan Quader To Everyone: Thank you Dr. Delene for the workshop 15:58:07 From Jurie Visagie To Everyone: Thank you Dr. Delene! I would like to request that certificate