Message Boards Message Boards

[WSG20] Study Group to Meet Daily in the Month of April

Wolfram Study Groups (WSG) are a new special program, set up to be fun, directed and incremental online learning resources. There is something for everyone, whether you are a student, an educator/parent looking for quality resources, or an adult interested in learning new skills. The group that is getting started now offers a daily opportunity to meet online with others interested in building Wolfram Language skills. Each session will include short lesson videos from the interactive course An Elementary Introduction to the Wolfram Language, based on Stephen Wolfram’s book, with experts on hand to explain concepts in more depth. We plan to include multiparadigm data science and other application topics too. Sessions run Monday through Friday, 12-1pm US EDT (4-5pm GMT). A certificate of program completion will be awarded to participants who attend online sessions and pass auto-graded online quizzes. Sign up and receive email reminders of upcoming sessions, or join a session in progress.

POSTED BY: Jamie Peterson
32 Replies

Great series. I completed the four quizzes. Do we need to do anything else to request a certificate?

POSTED BY: Jay Morreale

I absolutely love these series! Thanks

POSTED BY: Charles Glover

New thread at https://community.wolfram.com/groups/-/m/t/1964303 to discuss topics from the week of May 4- May 8

On Day 14 of the study group we are covering the following chapters from EIWL:

  • Chapter 12: Sound
  • Chapter 17: Units
  • Chapter 19: Dates and Times

New Study Group dates have been added for May! This new Study Group begins Monday, May 4, and will go beyond beginner-level topics and cover practical programming, working with data, building simple interfaces, expressions, assignments, patterns, user-defined functions and package development. Earn a certificate of program completion through attendance and quizzes. Wolfram Technology Certified Level I will be awarded to participants who successfully complete assigned problems. Sign up to reserve your spot and receive email reminders.

POSTED BY: Jamie Peterson

On Day 12 of the study group we will be covering the following chapters from EIWL:

  • Chapter 37: Layout and Display
  • Chapter 9: Interactive Manipulation

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1947684

Posted 4 years ago

like this code(Graphics3D[ Table[Style[Sphere[RandomInteger[10, 3]], Opacity[0.5]], 100]]) but i want the same volume of above Parallelepiped and i want to change number of atoms with time to be every one minute one atom and after 240 minutes the Parallelepiped will be full of 240 atoms

POSTED BY: M al

May be this is what you want:

h = 10;
l = 6;
w = 4;
r = 0.2;
atoms = Table[
   Sphere[{RandomReal[w - r], RandomReal[l - r], RandomReal[h - r]}, 
    r], 240];
Manipulate[
 Graphics3D[{Opacity[0.2], 
   Parallelepiped[{0, 0, 0}, {{w, 0, 0}, {0, l, 0}, {0, 0, h}}], 
   Opacity[0.5], Red, atoms[[1 ;; n]]}, Axes -> True, 
  AxesStyle -> GrayLevel[0], ViewPoint -> {1.3, -2.4, 2.}], {n, 0, 
  240, 1}]
Posted 4 years ago

i create this code (Show[Graphics3D[ Parallelepiped[{0, 0, 0}, {{10, 0, 0}, {0, 6, 0}, {0, 0, 4}}], {Axes -> True, AxesStyle -> GrayLevel[0]}], ViewPoint -> {1.3, -2.4, 2.}]), How can i put an atom every one mint and after 240 mints the parallepiped will be full of atoms.

POSTED BY: M al

Do you mean something like the following?

h = 10;
l = 6;
w = 4;
r = 0.2;
Graphics3D[{Opacity[0.2], 
  Parallelepiped[{0, 0, 0}, {{w, 0, 0}, {0, l, 0}, {0, 0, h}}], 
  Opacity[0.5], Red, 
  Table[Sphere[{RandomReal[w - r], RandomReal[l - r], 
     RandomReal[h - r]}, r], 240]}, Axes -> True, 
 AxesStyle -> GrayLevel[0], ViewPoint -> {1.3, -2.4, 2.}]

enter image description here

On Day 11 of the study group we are covering the following chapters from [EIWL][1]:

  • Chapter 10: Images
  • Chapter 14: Coordinates and Graphics
  • Chapter 24: More Forms of Visualization

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1947684

You will receive links to all the relevant resources so far in your reminder email.

On Day 10 of the study group we are covering the following chapters from EIWL:

  • Chapter 4: Displaying Lists
  • Chapter 7: Colors and Styles
  • Chapter 8: Basic Graphics Objects

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1947684

where is the link to today's (20th) presentation. I lost internet connection mid-session. thanks Andrew Skipor

POSTED BY: Andrew Skipor

On Day 9 of the study group we are covering the following chapters from EIWL:

  • Chapter 27: Applying Functions Repeatedly
  • Chapter 29: More about Pure Functions
  • Chapter 46: Writing Good Code
  • Chapter 47: Debugging Your Code

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1935390

On Day8 of the study group we are covering the following chapters from EIWL:

  • Chapter 34: Associations
  • Chapter 45: Datasets

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1935390

Hello Abrita, Excellent , Thank you very much. Just tried it and it works like a charm. I will compare the 2 commands and see how you modified them. Andrew

POSTED BY: Andrew Skipor

For your second question: you may want to look at http://reference.wolfram.com/language/ref/ChromaticityPlot.html

Perfect and thanks very much! Andrew

POSTED BY: Andrew Skipor

For your first question you want to modify the code as follows:

Import["https://images.search.yahoo.com/search/images;_ylt=AwrExo6gMpdei08AnAmLuLkF;_ylc=X1MDOTYwNTc0ODMEX3IDMgRmcgMEZ3ByaWQDMkFybVJzZFBSbmVtRGs0aHVwdU1oQQRuX3N1Z2cDMTAEb3JpZ2luA2ltYWdlcy5zZWFyY2gueWFob28uY29tBHBvcwMwBHBxc3RyAwRwcXN0cmwDBHFzdHJsAzQEcXVlcnkDbGlseQR0X3N0bXADMTU4Njk2NzIwNQ--?fr2=sb-top-images.search&p=lily&ei=UTF-8&iscqry=&fr=sfp","Images"]

To look for images at a URL, use the "Images" option with Import:

Import[<URL>,"Images"]

I do have 2 questions, I tried doing get data from the internet like "lily" the flower, but it was a mess: here is the example tried.How does one actually get images of the flower "lily"as an example.

Import["<a href="https://images.search.yahoo.com/search/images;https://images.search.yahoo.com/search/images;ylt=\ A0geKLottpVe0NMA0RRXNyoA;_ylu=\ X3oDMTE0cTZhamZ0BGNvbG8DYmYxBHBvcwMxBHZ0aWQDQTA2MjJfMQRzZWMDcGl2cw--?\ p=lily&fr2=piv-web&fr=mcafee"]

My other question is there a command to to get the color coordinate function. Looking to get this plot I do have 2 questions, I tried doing get data from the internet like "lily" the flower, but it was a mess: here is the example tried.How does one actually get images of the flower "lily"as an example.

Import["<a href="https://images.search.yahoo.com/search/images;https://images.search.yahoo.com/search/images;ylt=\ A0geKLottpVe0NMA0RRXNyoA;_ylu=\ X3oDMTE0cTZhamZ0BGNvbG8DYmYxBHBvcwMxBHZ0aWQDQTA2MjJfMQRzZWMDcGl2cw--?\ p=lily&fr2=piv-web&fr=mcafee"]

My other question is there a command to to get the color coordinate function? Looking to get this plot: https://images.search.yahoo.com/search/images?p=color+coordinates&fr=mcafee&imgurl=http%3A%2F%2Fecse.rpi.edu%2F%7Eschubert%2FLight-Emitting-Diodes-dot-org%2Fchap17%2FF17-03%2520Chromaticity%2520diagram%2520%28Gage%29.jpg#id=2&iurl=http%3A%2F%2Fecse.rpi.edu%2F%7Eschubert%2FLight-Emitting-Diodes-dot-org%2Fchap17%2FF17-03%2520Chromaticity%2520diagram%2520%28Gage%29.jpg&action=click

thanks Andrew

POSTED BY: Andrew Skipor

is there a class on 4-15? no webinar email for this date. Andrew

POSTED BY: Andrew Skipor

Correct, no Study Group today. Instead, we encourage everyone to attend the New in Wolfram Language 12.1 webinar, starting at 12pm US EDT (5pm GMT) today. Jon McLoone will share an engaging overview presentation with us, and we'll dive into specific topics in detail at upcoming Wednesday webinars. Join by logging in here: https://wolfr.am/LOBWol90

POSTED BY: Jamie Peterson

On Day7 of the study group we covered the following chapters from EIWL:

  • Chapter 5: Operations on Lists
  • Chapter 13: Arrays, or Lists of Lists
  • Chapter 30: Rearranging Lists
  • Chapter 31: Parts of Lists

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1935390

On Day 6 of the study group we covered the following chapters from EIWL:

  • Chapter 16: Real World Data
  • Chapter 35: Natural Language Understanding
  • Chapter 44: Importing and Exporting

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1935390

On Day 5 of the study group we covered the following chapters from EIWL:

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1931369

Thank you so much for organise this Wolfram Study Groups: I find it really useful in order to get a Level I certification in programming in the Wolfram Language.

Posted 4 years ago

Thank you.

POSTED BY: M al

On Day 4 of the study group we will be looking at the following chapters from EIWL:

  • Chapter 6: Making Tables
  • Chapter 25: Ways to Apply Functions
  • Chapter 26: Pure Anonymous Functions

If you have questions from the sessions, please post on this thread https://community.wolfram.com/groups/-/m/t/1931369

On Day 3 of the study group we will be looking at the following chapters from EIWL:

  • Chapter 41: More about Patterns
  • Chapter 38: Assigning Names to Things
  • Chapter 39: Immediate and Delayed Values
  • Chapter 40: Defining Your Own Functions

If you have questions from the sessions, post on this thread https://community.wolfram.com/groups/-/m/t/1928061

On Day 2 of the study group we will be looking at the following chapters from EIWL:

  • Chapter 11: Strings and Text
  • Chapter 23: More About Numbers
  • Chapter 28: Tests and Conditionals
  • Chapter 32: Patterns

On Day 1 of the study group we covered the following chapters from EIWL:

  • Practicalities of using the Wolfram Language
  • Chapter 1: Starting Out : Elementary Arithmetic
  • Chapter 2: Introducing Functions
  • Chapter 15: Scope of the Wolfram Language
  • Chapter 20: Options
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract