diff --git "a/week3/[MLNovice]\354\241\260\354\230\210\354\235\270_week3-1.ipynb" "b/week3/[MLNovice]\354\241\260\354\230\210\354\235\270_week3-1.ipynb" new file mode 100644 index 0000000..a0202d8 --- /dev/null +++ "b/week3/[MLNovice]\354\241\260\354\230\210\354\235\270_week3-1.ipynb" @@ -0,0 +1 @@ +{"nbformat":4,"nbformat_minor":0,"metadata":{"colab":{"provenance":[],"authorship_tag":"ABX9TyPQWJCZo/Gi/6T9yGB+46vN"},"kernelspec":{"name":"python3","display_name":"Python 3"},"language_info":{"name":"python"}},"cells":[{"cell_type":"markdown","source":["# 럭키백의 확률"],"metadata":{"id":"Z0CJMJOEpp_L"}},{"cell_type":"code","execution_count":1,"metadata":{"colab":{"base_uri":"https://localhost:8080/","height":206},"id":"V5M_AL9gpSSj","executionInfo":{"status":"ok","timestamp":1728701797259,"user_tz":-540,"elapsed":1340,"user":{"displayName":"조예인","userId":"17650117334011908449"}},"outputId":"44ddc7b9-8ee0-402c-fd80-c2441a1dce35"},"outputs":[{"output_type":"execute_result","data":{"text/plain":[" Species Weight Length Diagonal Height Width\n","0 Bream 242.0 25.4 30.0 11.5200 4.0200\n","1 Bream 290.0 26.3 31.2 12.4800 4.3056\n","2 Bream 340.0 26.5 31.1 12.3778 4.6961\n","3 Bream 363.0 29.0 33.5 12.7300 4.4555\n","4 Bream 430.0 29.0 34.0 12.4440 5.1340"],"text/html":["\n","
\n"," | Species | \n","Weight | \n","Length | \n","Diagonal | \n","Height | \n","Width | \n","
---|---|---|---|---|---|---|
0 | \n","Bream | \n","242.0 | \n","25.4 | \n","30.0 | \n","11.5200 | \n","4.0200 | \n","
1 | \n","Bream | \n","290.0 | \n","26.3 | \n","31.2 | \n","12.4800 | \n","4.3056 | \n","
2 | \n","Bream | \n","340.0 | \n","26.5 | \n","31.1 | \n","12.3778 | \n","4.6961 | \n","
3 | \n","Bream | \n","363.0 | \n","29.0 | \n","33.5 | \n","12.7300 | \n","4.4555 | \n","
4 | \n","Bream | \n","430.0 | \n","29.0 | \n","34.0 | \n","12.4440 | \n","5.1340 | \n","
matplotlib.pyplot.show
def show(*args, **kwargs)
\n"," \n"," Display all open figures.\n","\n","Parameters\n","----------\n","block : bool, optional\n"," Whether to wait for all figures to be closed before returning.\n","\n"," If `True` block and run the GUI main loop until all figure windows\n"," are closed.\n","\n"," If `False` ensure that all figure windows are displayed and return\n"," immediately. In this case, you are responsible for ensuring\n"," that the event loop is running to have responsive figures.\n","\n"," Defaults to True in non-interactive mode and to False in interactive\n"," mode (see `.pyplot.isinteractive`).\n","\n","See Also\n","--------\n","ion : Enable interactive mode, which shows / updates the figure after\n"," every plotting command, so that calling ``show()`` is not necessary.\n","ioff : Disable interactive mode.\n","savefig : Save the figure to an image file instead of showing it on screen.\n","\n","Notes\n","-----\n","**Saving figures to file and showing a window at the same time**\n","\n","If you want an image file as well as a user interface window, use\n","`.pyplot.savefig` before `.pyplot.show`. At the end of (a blocking)\n","``show()`` the figure is closed and thus unregistered from pyplot. Calling\n","`.pyplot.savefig` afterwards would save a new and thus empty figure. This\n","limitation of command order does not apply if the show is non-blocking or\n","if you keep a reference to the figure and use `.Figure.savefig`.\n","\n","**Auto-show in jupyter notebooks**\n","\n","The jupyter backends (activated via ``%matplotlib inline``,\n","``%matplotlib notebook``, or ``%matplotlib widget``), call ``show()`` at\n","the end of every cell by default. Thus, you usually don't have to call it\n","explicitly there.